Get organization IdP
Gets the oranization's IdP. Currently unavailable in self-hosted ECE.
Path parameters
-
organization_id
string Required Identifier for the Organization
GET
/organizations/{organization_id}/idp
curl \
--request GET https://api.elastic-cloud.com/api/v1/organizations/{organization_id}/idp
Response examples (200)
{
"login_identifier": "string",
"sso_login_url": "string",
"metadata_url": "string",
"acs": "string",
"sp_entity_id": "string",
"signing_certificate": [
"string"
],
"configuration": {
"enabled": true,
"login_identifier_prefix": "string",
"saml_idp": {
"public_certificate": [
"string"
],
"issuer": "string",
"sso_url": "string"
}
}
}
Response examples (404)
# Headers
x-cloud-error-codes: org.idp.idp_not_configured
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}