Skip to main content
PUT
/
v1
/
workspace
/
client
/
update
Update workspace client
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"
  }
}

Authorizations

Authorization
string
header
required

Enter your API key (starts with lindo_sk_)

Body

application/json
client_id
string
required

Unique identifier of the client to update

Example:

"client_abc123"

website_limit
number

Maximum websites allowed for this client

Example:

5

suspended
boolean

Whether the client is suspended

Example:

false

full_name
string

Client full name

Example:

"John Doe"

Response

Client updated successfully

success
enum<boolean>
required

Indicates the operation was successful

Available options:
true,
false
Example:

true

result
object
required