Retrieve a saml configuration

Retrieves the details of an existing saml configuration.

GET/v3/accounts/{id}/saml-configuration
JWT
account:read

Parameters

NameTypeInDescription
id*stringpathUnique identifier for the saml configuration.

Responses

200 OK
{
  "id": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "metadataUrl": "string",
  "assertionConsumerServiceUrl": "string",
  "entityId": "string",
  "enabled": true,
  "autoProvisionUsers": true,
  "defaultRole": "string",
  "samlRoleMappings": [
    {
      "id": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z",
      "serviceProviderRole": "string",
      "identityProviderRole": "string"
    }
  ],
  "attributeMapping": {
    "email": [
      "string"
    ],
    "firstName": [
      "string"
    ],
    "lastName": [
      "string"
    ],
    "role": [
      "string"
    ]
  }
}