cURL
curl --request PUT \ --url https://apidev.lindo.ai/v1/workspace/client/update \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "client_id": "client_abc123", "website_limit": 5, "suspended": false, "full_name": "John Doe" } '
{ "success": true, "result": { "message": "Client updated successfully", "client_id": "client_abc123", "website_limit": 5, "suspended": false, "full_name": "John Doe" } }
Updates an existing client’s information including website limits and suspension status
Enter your API key (starts with lindo_sk_)
Unique identifier of the client to update
"client_abc123"
Maximum websites allowed for this client
5
Whether the client is suspended
false
Client full name
"John Doe"
Client updated successfully
Indicates the operation was successful
true
Show child attributes
Was this page helpful?