Β© 2002-2026 regfish GmbH. Regfish is a registered trademark of regfish GmbH. All prices include VAT. No guarantee for completeness. Our Terms and Conditions.
PATCH
/tls/organization/{organization_id}
TLSOrganizationsByID
Authentication
Parameters
Name
Type
Format
Required
Description
organization_id
string
β
Required
Public TLS organization ID
Request body
Partial TLS organization payload
tlsOrganizationPatchRequesttlsOrganizationPatchRequest
{
"edit_mode": "create_replacement",
"organization": "example",
"first_name": "example",
"last_name": "example"
}Fields
Name
Type
Format
Required
Description
edit_mode
string
β
Optional
β
organization
string
β
Optional
β
first_name
string
β
Optional
β
last_name
string
β
Optional
β
address
string
β
Optional
β
postal_code
string
β
Optional
β
city
string
β
Optional
β
country_code
string
β
Optional
β
phone
string
β
Optional
β
email
string
β
Optional
β
Request example
PATCH
curl --request PATCH \
--url 'https://api.regfish.com/tls/organization/hdl_7K9QW3M2ZT8HJ' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'content-type: application/json' \
--data '{
"edit_mode": "create_replacement",
"organization": "example",
"first_name": "example",
"last_name": "example"
}'Responses
200
TLS organization updated
Response example 200
{
"success": true,
"code": 0,
"response": {
"id": "hdl_7K9QW3M2ZT8HJ",
"organization": "example",
"status": "ready",
"usable_for_ordering": true,
"first_name": "example",
"last_name": "example",
"address": "example",
"postal_code": "example",
"city": "example",
"country_code": "example",
"phone": "example",
"email": "example"
}
}400
Invalid request payload
Response example 400
{
"success": false,
"message": "Invalid request payload",
"error": "Invalid request payload"
}401
Unauthorized
Response example 401
{
"success": false,
"message": "Unauthorized",
"error": "Unauthorized"
}404
TLS organization not found
Response example 404
{
"success": false,
"message": "TLS organization not found",
"error": "TLS organization not found"
}500
Unexpected error
Response example 500
{
"success": false,
"message": "Unexpected error",
"error": "Unexpected error"
}