Get an existing set of SAML provider credentials for SSO
Returns an existing set of SAML provider for SSO, specified by the provider credential ID.
Path Parameters
- saml_provider_credentials_id string required
The SAML provider credentials ID
Header Parameters
- SlashID-OrgID string required
The organization ID
Example: af5fbd30-7ce7-4548-8b30-4cd59cb2aba1
Responses
- 200
- 400
- 404
OK
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage stringresult object
A SAML provider credential
id stringlabel stringA friendly free-form label to help you identify this set of SAML provider credentials.
idp_metadata_url stringThe SAML IdP's metadata URL.
email_claims string[]Possible values:
<= 3
The names of the claims in the SAML response containing the users' email addresses. The first match is added to the person's set of handles.
enable_in_slashid_oidc_authz_server booleanIndicates whether these credentials can be used for SSO authentication during an OIDC flow in which SlashID acts as the Authorization Server.
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
],
"result": {
"id": "string",
"label": "string",
"idp_metadata_url": "string",
"email_claims": [
"string"
],
"enable_in_slashid_oidc_authz_server": true
}
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage string
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
]
}
Not Found
- application/json
- Schema
- Example (from schema)
Schema
meta object
pagination object
limit integeroffset integertotal_count int64errors object[]
httpcode integermessage string
{
"meta": {
"pagination": {
"limit": 0,
"offset": 0,
"total_count": 0
}
},
"errors": [
{
"httpcode": 0,
"message": "string"
}
]
}