ZITADEL Docs
APIsCore ResourcesV1Organization Objects

AddSAMLApp

Create Application (SAML)

Deprecated: Use CreateApplication instead to create a SAML application.

Create a new SAML client. Returns an entity ID.

POST
/projects/{project_id}/apps/saml

Path Parameters

project_id*string

Request Body

application/json

name?string
loginVersion?|
metadataUrl*string
[key: string]?never

Response Body

application/json

application/json

curl -X POST "https://loading/projects/string/apps/saml" \  -H "Content-Type: application/json" \  -d '{    "name": "string",    "metadataUrl": "string"  }'
{
  "appId": "string",
  "details": {
    "sequence": 0,
    "creationDate": "1s",
    "changeDate": "1s",
    "resourceOwner": "string"
  }
}
{
  "code": "not_found",
  "message": "string",
  "detail": {
    "type": "string",
    "value": "string",
    "debug": {}
  }
}

Was this page helpful?