Last updated 6 hours ago
Use these operations to interact with the in Cortex.
GET /api/v1/active-directory/default-configuration HTTP/1.1 Host: api.getcortexapp.com Authorization: Bearer JWT Accept: */*
Successfully found configuration
{ "clientId": "text", "clientSecretLastFour": "text", "groupsFilter": "text", "tenantId": "text" }
POST /api/v1/active-directory/configuration/validate HTTP/1.1 Host: api.getcortexapp.com Authorization: Bearer JWT Accept: */*
Successfully validated configuration
{ "configurations": [ { "alias": "text", "isValid": true, "message": "text" } ] }
DELETE /api/v1/active-directory/configurations HTTP/1.1 Host: api.getcortexapp.com Authorization: Bearer JWT Accept: */*
Successfully deleted configuration
{ "configurations": [ { "clientId": "text", "clientSecretLastFour": "text", "groupsFilter": "text", "tenantId": "text" } ] }
POST /api/v1/active-directory/configuration HTTP/1.1 Host: api.getcortexapp.com Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 81 { "clientId": "text", "clientSecret": "text", "groupsFilter": "text", "tenantId": "text" }
Successfully added configuration
PUT /api/v1/active-directory/configuration HTTP/1.1 Host: api.getcortexapp.com Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 81 { "clientId": "text", "clientSecret": "text", "groupsFilter": "text", "tenantId": "text" }
Successfully replaces configuration