Authenticate SAML Added in 7.5.0

POST /_security/saml/authenticate

Submits a SAML response message to Elasticsearch for consumption.

application/json

Body Required

Responses

POST /_security/saml/authenticate
curl \
 -X POST http://api.example.com/_security/saml/authenticate \
 -H "Content-Type: application/json" \
 -d '{"content":"string","":"string","realm":"string"}'
Request examples
{
  "content": "string",
  "": "string",
  "realm": "string"
}
Response examples (200)
{
  "access_token": "string",
  "username": "string",
  "expires_in": 42.0,
  "refresh_token": "string",
  "realm": "string"
}