1. Docs
  2. API Reference
  3. Get the service-provider values for an organization's SSO connection

Get the service-provider values for an organization's SSO connection

GET/api/v1/organizations/{id}/sso-connection/service-provider

The values an administrator enters into the identity provider for this connection: for SAML the ACS URL, entity id, and metadata URL; for OpenID Connect the redirect URI. They are on the origin the API advertises in its own metadata and requests. Requires hierarchy.view or canopy:organization.manage at the organization.

Authentication

Bearer TokenAuthorization Option A

JWT access token. Never send alongside X-API-Key: a request carrying both is refused.

API KeyX-API-Key Option B

API key for management-tier access. Never send alongside an Authorization header: a request carrying both is refused.

Path Parameters

idstring Required

Responses

application/json

  • dataServiceProviderDetailsResponseDto*

application/json

  • errorApiErrorBodyDto*

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-connection/service-provider" \
  -H "X-API-Key: $CANOPY_API_KEY"
Response
{
  "data": {
    "protocol": "saml",
    "acs_url": "string",
    "entity_id": "string",
    "metadata_url": "string",
    "redirect_uri": "string"
  }
}
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
POSTRegenerate the organization's SSO recovery codes
POSTStart a test sign-in on the organization's connection
GETRead the organization's test sign-in
GETList the organization's domain claims
POSTClaim a domain for the organization
POSTVerify one of the organization's domains
DELETERemove one of the organization's domain claims
GETList an organization's SSO connections
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
GETList the roles an organization may assign
DELETERevoke an organization invitation
GETGet an organization's SSO connection
POSTSet up an organization's SSO connection
PATCHChange an organization's SSO connection
DELETERemove an organization's SSO connection
POSTActivate an organization's SSO connection
POSTDisable an organization's SSO connection
POSTImport the identity provider's SAML metadata
Was this page helpful?

Tell us how we can improve this guide.