Get the service-provider values for an organization's SSO connection
/api/v1/organizations/{id}/sso-connection/service-providerThe 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 Token
Authorization Option A JWT access token. Never send alongside X-API-Key: a request carrying both is refused.
API Key
X-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
data *ServiceProviderDetailsResponseDto
application/json
error *ApiErrorBodyDto
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-connection/service-provider" \ -H "X-API-Key: $CANOPY_API_KEY"
{ "data": { "protocol": "saml", "acs_url": "string", "entity_id": "string", "metadata_url": "string", "redirect_uri": "string" } }
Tell us how we can improve this guide.