Access Control (REST) API - Authentication Providers
This section includes REST APIs for working with Access Control Authentication Provider tasks.
Get All Authentication Providers - GET /AuthenticationProviders
Get details of all authentication providers.
Usage:
GET /AuthenticationProviders and get details of all authentication providers
URL
/cxrestapi/auth/AuthenticationProviders
Method:
GET
Media Type (header):
Authorization: Bearer <access token value>
Accept: application/json;v=1.0
Parameters
None
Success Response:
Code: 200 Success
Error Response:
None
Sample Response:
[
{
"id": 1,
"name": "Application",
"providerId": null,
"providerType": "Application",
"isExternal": false,
"active": true
},
{
"id": 2,
"name": "Open LDAP",
"providerId": 1,
"providerType": "LDAP",
"isExternal": false,
"active": true
},
{
"id": 3,
"name": "Domain",
"providerId": 1,
"providerType": "Domain",
"isExternal": false,
"active": true
}
]Notes:
Retrieves details of all authentication providers. If the request fails, it returns an error response.