Bind an SSO connection to an organization
/api/v1/organizations/{id}/sso-connectionsBinds an end_user SSO connection to the organization: a login through the connection lands in this organization, joining as a member with default_role_id when the identity is provisioned or is not yet a member, and the session starts here. The connection must already be bound to the organization's Environment (that binding routes the email domain), and the role must belong to the Environment (400 otherwise). A connection binds to one organization per Environment (409). Requires the hierarchy.manage permission at the organization and emits organization.sso_connection.bound.
Authentication
Authorization Option A JWT access token
X-API-Key Option B API key for management-tier access
Path Parameters
idstring Required Request body
application/json
sso_connection_idstring Required An end-user SSO connection already bound to the organization's Environment.
default_role_idstring Required The membership role a login through this connection receives when it joins the organization. Must belong to the organization's Environment.
Responses
application/json
data *OrganizationSsoConnectionResponseDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
application/json
error *ApiErrorBodyDto
Returned object
curl -X POST "https://auth.canopy-io.com/api/v1/organizations/value/sso-connections" \ -H "X-API-Key: $CANOPY_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "sso_connection_id": "string", "default_role_id": "string" }'
{ "data": { "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.