Method
POST /v1/organizations/:id/capabilities
Path Parameters
Organization ID.
Body Parameters
Headers
Bearer token with
organizations:write scope.application/jsoncurl -X POST https://api.voyantcloud.com/v1/organizations/org_123/capabilities \
-H "Authorization: Bearer $VOYANT_API_KEY" \
-H "content-type: application/json" \
-d '{
"category": "transport",
"modeKey": "cruise",
"notes": "Focus on Mediterranean routes"
}'
{
"data": {
"id": "cap_001",
"organizationId": "org_123",
"category": "transport",
"modeId": null,
"modeKey": "cruise",
"notes": "Focus on Mediterranean routes",
"attributes": null,
"createdAt": "2025-02-20T10:10:00.000Z"
}
}
Attach a capability tag to an organization.
POST /v1/organizations/:id/capabilities
organizations:write scope.application/jsoncurl -X POST https://api.voyantcloud.com/v1/organizations/org_123/capabilities \
-H "Authorization: Bearer $VOYANT_API_KEY" \
-H "content-type: application/json" \
-d '{
"category": "transport",
"modeKey": "cruise",
"notes": "Focus on Mediterranean routes"
}'
{
"data": {
"id": "cap_001",
"organizationId": "org_123",
"category": "transport",
"modeId": null,
"modeKey": "cruise",
"notes": "Focus on Mediterranean routes",
"attributes": null,
"createdAt": "2025-02-20T10:10:00.000Z"
}
}