Endpoint Examples
Organizations
Manage organization settings
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Manage organization settings
GET /v1/organizations/{orgId}
{
"success": true,
"data": {
"orgId": "org-123",
"name": "My Organization",
"authToken": "auth-token-123",
"webhookUrl": "https://example.com/webhook"
}
}
PUT /v1/organizations/{orgId}
{
"name": "Updated Org Name",
"webhookUrl": "https://example.com/new-webhook"
}
{
"success": true,
"data": {
"orgId": "org-123",
"name": "Updated Org Name",
"authToken": "auth-token-123",
"webhookUrl": "https://example.com/new-webhook"
}
}