Skip to main content
GET
/
v1
/
workspace
/
client
/
list
List all workspace clients
curl --request GET \
  --url https://apidev.lindo.ai/v1/workspace/client/list \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": {
    "list": [
      {
        "client_id": "client_abc123",
        "email": "[email protected]",
        "created_date": "2024-01-15T10:30:00Z",
        "full_name": "John Doe",
        "website_limit": 5,
        "suspended": false
      }
    ],
    "total": 25
  }
}

Authorizations

Authorization
string
header
required

Enter your API key (starts with lindo_sk_)

Query Parameters

page
string

Page number for pagination

Example:

"1"

Search term to filter clients

Example:

"john"

Response

Client list retrieved successfully

success
enum<boolean>
required

Indicates the operation was successful

Available options:
true,
false
Example:

true

result
object
required