Update TLS organization
PATCH /tls/organization/{organization_id}Operation ID: PatchOrganizationByID
Update the local TLS organization contact data used for readiness checks and order completion.
Path parameters
Section titled “Path parameters”| Name | Type | Required | Description |
|---|---|---|---|
organization_id |
tlsOrganizationId | yes | — |
Request body
Section titled “Request body”| Field | Type | Required | Description |
|---|---|---|---|
edit_mode |
string |
no | (create_replacement, update_provider) |
organization |
string |
no | — |
first_name |
string |
no | — |
last_name |
string |
no | — |
address |
string |
no | — |
postal_code |
string |
no | — |
city |
string |
no | — |
country_code |
string |
no | — |
phone |
string |
no | — |
email |
string |
no | — |
Responses
Section titled “Responses”| Status | Type | Description |
|---|---|---|
200 |
tlsOrganizationResponse |
TLS organization updated |
400 |
Error |
Invalid request payload |
401 |
Error |
Unauthorized |
404 |
Error |
TLS organization not found |
500 |
Error |
Unexpected error |
Response body
Section titled “Response body”| Field | Type | Required | Description |
|---|---|---|---|
success |
boolean |
yes | Success indicator |
code |
integer |
no | Response/Error Code |
response |
tlsOrganizationResponse | no | — |
Example
Section titled “Example”curl -X PATCH "https://api.regfish.com/tls/organization/<organization_id>" \ -H "x-api-key: $REGFISH_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "edit_mode": "create_replacement", "organization": "string", "first_name": "string", "last_name": "string", "address": "string", "postal_code": "string", "city": "string", "country_code": "string", "phone": "string", "email": "string" }'Build a request
Section titled “Build a request”Fill in values — the call below updates as you type. Nothing is sent: the API does not currently allow browser requests from this domain (CORS). The API key is not stored.