Method
GET /v1/organizations/:id
Path Parameters
Organization ID.
Headers
Bearer token with
organizations:read scope.curl "https://api.voyantcloud.com/v1/organizations/org_123" \
-H "Authorization: Bearer $VOYANT_API_KEY"
{
"data": {
"id": "org_123",
"name": "Voyant Cruises",
"legalName": "Voyant Cruises SRL",
"email": "[email protected]",
"phone": "+40 700 000 001",
"description": "Cruise specialist partner",
"taxId": "RO12345678",
"kind": "agency",
"billingAddress": null,
"visitingAddress": null,
"metadata": { "tier": "gold" },
"createdAt": "2025-02-20T10:00:00.000Z",
"updatedAt": "2025-02-20T10:00:00.000Z"
}
}
Retrieve a single organization by ID.
GET /v1/organizations/:id
organizations:read scope.curl "https://api.voyantcloud.com/v1/organizations/org_123" \
-H "Authorization: Bearer $VOYANT_API_KEY"
{
"data": {
"id": "org_123",
"name": "Voyant Cruises",
"legalName": "Voyant Cruises SRL",
"email": "[email protected]",
"phone": "+40 700 000 001",
"description": "Cruise specialist partner",
"taxId": "RO12345678",
"kind": "agency",
"billingAddress": null,
"visitingAddress": null,
"metadata": { "tier": "gold" },
"createdAt": "2025-02-20T10:00:00.000Z",
"updatedAt": "2025-02-20T10:00:00.000Z"
}
}
401 or 404 depending on context.