Skip to main content
DELETE
/
v1
/
workspace
/
client
/
delete
Delete workspace client
curl --request DELETE \
  --url https://apidev.lindo.ai/v1/workspace/client/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "client_id": "client_abc123"
}
'
{
  "success": true,
  "result": {
    "message": "Client deleted successfully",
    "client_id": "client_abc123",
    "revoked": true
  }
}

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 delete

Example:

"client_abc123"

Response

Client deleted successfully

success
enum<boolean>
required

Indicates the operation was successful

Available options:
true,
false
Example:

true

result
object
required