List an organization's SSO connections
/api/v1/organizations/{id}/sso-connectionsLists the end-user SSO connections bound to this organization, oldest first, each with the membership role a just-in-time provisioned login receives. Requires the hierarchy.view permission at the organization. The response is an unpaginated { items } array.
Authentication
Bearer Token
Authorization Option A JWT access token
API Key
X-API-Key Option B API key for management-tier access
Path Parameters
idstring Required Responses
application/json
items *OrganizationSsoConnectionResponseDto[]
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
Returned object
curl -X GET "https://auth.canopy-io.com/api/v1/organizations/value/sso-connections" \ -H "X-API-Key: $CANOPY_API_KEY"
{ "items": [ { "organization_node_id": "string", "sso_connection_id": "string", "sso_connection": { "id": "string", "name": "string", "type": "saml", "status": "string" }, "default_role_id": "string", "default_role": { "id": "string", "name": "string" }, "created_at": "2026-04-20T12:00:00.000Z" } ] }
Tell us how we can improve this guide.