Skip to main content
GET
/
v1
/
workspace
Get workspace details
curl --request GET \
  --url https://apidev.lindo.ai/v1/workspace \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": {
    "workspace_id": "workspace_abc123",
    "workspace_name": "My Workspace",
    "workspace_language": "en",
    "email": "[email protected]",
    "plan": "pro",
    "integrations": [
      {
        "name": "stripe",
        "ready": false,
        "value": "acct_1SwQ4AIJUp1O1efL"
      }
    ],
    "webhook_url": "https://api.mybusiness.com/webhooks",
    "created_date": "2024-01-15T10:30:00Z"
  }
}

Authorizations

Authorization
string
header
required

Enter your API key (starts with lindo_sk_)

Response

Workspace details retrieved successfully

success
enum<boolean>
required

Indicates the operation was successful

Available options:
true,
false
Example:

true

result
object
required