1. Docs
  2. API Reference
  3. List an organization's SSO connections

List an organization's SSO connections

GET/api/v1/organizations/{id}/sso-connections

Lists 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 TokenAuthorization Option A

JWT access token

API KeyX-API-Key Option B

API key for management-tier access

Path Parameters

idstring Required

Responses

application/json

  • itemsOrganizationSsoConnectionResponseDto[]*

application/json

  • errorApiErrorBodyDto*

application/json

  • errorApiErrorBodyDto*

application/json

  • errorApiErrorBodyDto*

Returned object

Request
curl -X GET "https://auth.canopy-io.com/api/v1/organizations/value/sso-connections" \
  -H "X-API-Key: $CANOPY_API_KEY"
Response
{
  "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"
    }
  ]
}
Related endpoints
GETList organizations
POSTCreate an organization
DELETEDelete every organization
GETGet an organization
PATCHUpdate an organization
DELETEDelete an organization
GETGet an organization's authentication policy
PATCHUpdate an organization's authentication policy
POSTBind an SSO connection to an organization
DELETEUnbind an SSO connection from an organization
GETList an organization's members
POSTAdd a member to an organization
PATCHChange a member's role
DELETERemove a member from an organization
GETList an organization's invitations
POSTInvite a member into an organization
DELETERevoke an organization invitation
Was this page helpful?

Tell us how we can improve this guide.