Get organization authentications

GET
/api/v2/organizations/{id}/authentications

Get authentication details of a specific organization.

AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Example: 'Bearer {token}'

In: header

Path Parameters

id*string

The ID of the organization.

Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/v2/organizations/497f6eca-6276-4993-bfeb-53cbbbba6f08/authentications"
{  "allowNtlm": true,  "allowJwt": true,  "identityProviders": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "description": "string",      "isAactive": true,      "createdDate": "2019-08-24T14:15:22Z"    }  ]}