ZITADEL Docs
APIsCore ResourcesV2SAML

GetSAMLRequest

Get SAML Request

Get SAML Request details by ID. Returns details that are parsed from the application's SAML Request.

Required permissions:

  • session.read
GET
/v2/saml/saml_requests/{saml_request_id}

Path Parameters

saml_request_id*string

ID of the SAML Request, as obtained from the redirect URL.

Response Body

application/json

application/json

curl -X GET "https://loading/v2/saml/saml_requests/string"
{
  "samlRequest": {
    "id": "string",
    "creationDate": "1s",
    "issuer": "string",
    "assertionConsumerService": "string",
    "relayState": "string",
    "binding": "string"
  }
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?