/
✏️ Update client details
Update client details.
This endpoint allows you to update an existing client's information. Only the fields provided in the request will be updated; fields not included will remain unchanged.
Note: When updating external_ref, ensure it's unique for this sponsor.
Sécurité
APIKeyHeader
Any of:
Name of the organization
[ 1 .. 255 ] characters
string
Any of:
Contact email for the organization
<= 255 characters
string
Any of:
External reference identifier
[ 1 .. 100 ] characters
string
- Dev serverhttps://pdp.seqino.dev/api/clients/{client_id}
- Production serverhttps://pa.seqino.com/api/clients/{client_id}
curl -i -X PUT \
'https://pdp.seqino.dev/api/clients/{client_id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"organization_name": "Acme Corporation",
"contact_email": "contact@acme.com",
"external_ref": "EXT-12345",
"status": "active"
}'Client updated successfully
Current status of the client
Enum:"active""inactive""pending""suspended"
Response
- string (date-time)
- null
{ "client_id": "string", "organization_name": "string", "contact_email": "string", "external_ref": "string", "sponsor_id": "string", "status": "active", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }