Aurion Docs
Api

Test Azure AD connection

Tests the connection to Azure AD by fetching the OIDC discovery document. Admin only.

POST
/api/v1/config/azure-ad/test

Tests the connection to Azure AD by fetching the OIDC discovery document. Admin only.

AuthorizationBearer <token>

In: header

Request Body

application/json

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/config/azure-ad/test" \  -H "Content-Type: application/json" \  -d '{    "client_id": "stringstringstringstringstringstring",    "tenant_id": "stringstringstringstringstringstring"  }'
{
  "details": {},
  "message": "string",
  "success": true
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}