Method
GET /v1/organizations
Query Parameters
Search query (matches name/description).
Filter by organization category.
Filter by capability mode key.
Headers
Bearer token with
organizations:read scope.curl "https://api.voyantcloud.com/v1/organizations?q=travel&category=agency" \
-H "Authorization: Bearer $VOYANT_API_KEY"
{
"data": [
{
"id": "org_123",
"name": "Voyant Cruises",
"legalName": "Voyant Cruises SRL",
"email": "contact@voyantcruises.com",
"phone": "+40 700 000 001",
"description": "Cruise specialist partner",
"taxId": "RO12345678",
"kind": "agency",
"billingAddress": null,
"visitingAddress": null,
"metadata": null,
"createdAt": "2025-01-20T10:00:00.000Z",
"updatedAt": "2025-01-20T10:00:00.000Z"
}
]
}
Retrieve organizations for the current workspace with optional filters.
GET /v1/organizations
organizations:read scope.curl "https://api.voyantcloud.com/v1/organizations?q=travel&category=agency" \
-H "Authorization: Bearer $VOYANT_API_KEY"
{
"data": [
{
"id": "org_123",
"name": "Voyant Cruises",
"legalName": "Voyant Cruises SRL",
"email": "contact@voyantcruises.com",
"phone": "+40 700 000 001",
"description": "Cruise specialist partner",
"taxId": "RO12345678",
"kind": "agency",
"billingAddress": null,
"visitingAddress": null,
"metadata": null,
"createdAt": "2025-01-20T10:00:00.000Z",
"updatedAt": "2025-01-20T10:00:00.000Z"
}
]
}