Azure Active Directory (Entra ID) API
Use these operations to interact with the Azure Active Directory (Entra ID) integration in Cortex.
Operations
Successfully found configuration
Bad Request
Configuration not found
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
GET /api/v1/active-directory/default-configuration HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Accept: */*
{
"clientId": "text",
"clientSecretLastFour": "text",
"groupsFilter": "text",
"tenantId": "text"
}
Successfully added configuration
Bad Request
Forbidden
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
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"
}
{
"configurations": [
{
"clientId": "text",
"clientSecretLastFour": "text",
"groupsFilter": "text",
"tenantId": "text"
}
]
}
Successfully replaces configuration
Bad Request
Forbidden
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
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"
}
{
"configurations": [
{
"clientId": "text",
"clientSecretLastFour": "text",
"groupsFilter": "text",
"tenantId": "text"
}
]
}
Successfully validated configuration
Configuration not found
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
POST /api/v1/active-directory/configuration/validate HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Accept: */*
{
"configurations": [
{
"alias": "text",
"isValid": true,
"message": "text"
}
]
}
Successfully deleted configuration
Bad Request
Forbidden
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
DELETE /api/v1/active-directory/configurations HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Accept: */*
{
"configurations": [
{
"clientId": "text",
"clientSecretLastFour": "text",
"groupsFilter": "text",
"tenantId": "text"
}
]
}
Last updated
Was this helpful?