Skip to main content

Method

GET /v1/organizations/:id/capabilities

Path Parameters

id
uuid
required
Organization ID.

Headers

Authorization
string
Bearer token with organizations:read scope.

Request Example

curl "https://api.voyantcloud.com/v1/organizations/org_123/capabilities" \
  -H "Authorization: Bearer $VOYANT_API_KEY"

Response

{
  "data": [
    {
      "id": "cap_001",
      "category": "transport",
      "modeKey": "cruise",
      "modeId": null,
      "notes": "Preferred cruise partner",
      "attributes": { "fleetSize": 5 },
      "createdAt": "2025-02-20T10:05:00.000Z"
    }
  ]
}
Capabilities are namespaced by workspace. The API key you use determines which workspace’s organizations you can access.