API Reference
//Update a client
Security
form_session or user_session or component_session or component_token or api_token
- Mock serverhttps://docs.onboarded.com/_mock/openapi/api/v1/clients/{client_id}
- Onboarded Production Serverhttps://app.onboarded.com/api/v1/clients/{client_id}
- form_session
- user_session
- component_session
- component_token
- api_token
curl -i -X PATCH \
'https://docs.onboarded.com/_mock/openapi/api/v1/clients/{client_id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"name": "string",
"custom_attributes": {
"property1": null,
"property2": null
},
"property1": null,
"property2": null
}'A client with standard fields plus any system-defined custom attributes as top-level properties. System attributes are organization-specific fields (ScalarValue: string, number, boolean, or null) that extend the base client schema.
Record of custom attribute values keyed by string path.
Response
{ "id": "cl_abc123def456", "name": "string", "custom_attributes": { "property1": null, "property2": null }, "created_at": "string", "updated_at": "string", "property1": null, "property2": null }