cURL
curl --request POST \ --url https://apidev.lindo.ai/v1/workspace/client/create \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "[email protected]", "website_limit": 1, "full_name": "John Doe", "credit_limit": 100 } '
{ "success": true, "result": { "client_id": "client_abc123", "email": "[email protected]", "created_date": "2024-01-15T10:30:00Z", "full_name": "John Doe", "suspended": false, "website_limit": 1, "credit_limit": 100 } }
Creates a new client for a workspace with specified email and permissions
Enter your API key (starts with lindo_sk_)
Client email address
"[email protected]"
Maximum websites allowed for this client
1
Client full name
"John Doe"
Credit limit for client
100
Client created successfully
Indicates the operation was successful
true
false
Show child attributes
Was this page helpful?