Deployments
List deployment targets
Returns one row per supported deployment platform (microsoft-addin, google-slides, canva, figma). Platforms that haven’t been configured for this org are returned with status="not_configured" rather than omitted, so the response shape is stable.
Authorization
ApiKey AuthorizationBearer <token>
Bearer API key. CMS endpoints require cms:read or cms:write (plus narrower writes for specific resources).
In: header
Response Body
application/json
curl -X GET "https://example.com/deployments"{ "object": "list", "data": [ { "id": "string", "object": "deployment", "organization": "string", "platform": "microsoft-addin", "status": "string", "health": "string", "enabled_capabilities": [ "string" ], "config": { "property1": null, "property2": null }, "configured_by": "string", "configured_at": "string", "updated_by": "string", "last_synced_at": "string", "last_deployed_at": "string", "last_verified_at": "string", "last_error": "string", "created": "string", "updated": "string" } ], "has_more": true, "url": "string"}