Identity Providers
Domains
List a domain's identity providers
Returns all identity providers managed by the Automation API under the domain. Identity providers created outside the Automation API are not returned.
get/organizations/{orgId}/environments/{envId}/domains/{domainKey}/identities
Path parameters
orgIdstring required
Identifier of the organization that owns the environment.
envIdstring required
Identifier of the environment the domain belongs to.
domainKeystring required
Key of the domain: its stable, immutable Automation identifier within the environment.
Response
List of identity providers
Example response
[
{
"configuration": "{\"users\":[{\"username\":\"admin\",\"password\":\"...\"}]}",
"domainWhitelist": [
"example.com"
],
"key": "corporate-ldap",
"mappers": {
"email": "email",
"sub": "username"
},
"name": "Corporate LDAP",
"type": "inline-am-idp"
}
]