Skip to main content
POST
/
v1
/
workspace
/
client
/
create
Create new workspace client
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
  }
}

Authorizations

Authorization
string
header
required

Enter your API key (starts with lindo_sk_)

Body

application/json
email
string<email>
required

Client email address

website_limit
number
default:1

Maximum websites allowed for this client

Example:

1

full_name
string

Client full name

Example:

"John Doe"

credit_limit
number

Credit limit for client

Example:

100

Response

Client created successfully

success
enum<boolean>
required

Indicates the operation was successful

Available options:
true,
false
Example:

true

result
object
required