ApiAccessManagement
Enter your bearer token in the format Bearer <token>
Current page number. Default value is 1.
Maximum page size is 200. Default page size is 30.
Optional environment id to filter by
OK
Environment not found
GET /api/v1/api-management/access/api-keys HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"data": {
"name": "text",
"id": 1,
"value": "123e4567-e89b-12d3-a456-426614174000",
"modified": "2025-11-28T00:28:28.063Z",
"modifier": "text",
"environment": {
"id": 1,
"displayName": "text"
}
}
}Enter your bearer token in the format Bearer <token>
Name of the API key
Identifier of the Environment of the API key
API key created
Bad Request
POST /api/v1/api-management/access/api-keys HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 33
{
"name": "text",
"environmentId": 1
}{
"data": {
"name": "text",
"id": 1,
"value": "123e4567-e89b-12d3-a456-426614174000",
"modified": "2025-11-28T00:28:28.063Z",
"modifier": "text",
"environment": {
"id": 1,
"displayName": "text"
}
}
}Enter your bearer token in the format Bearer <token>
API key identifier
OK
API key not found
GET /api/v1/api-management/access/api-keys/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"data": {
"name": "text",
"id": 1,
"value": "123e4567-e89b-12d3-a456-426614174000",
"modified": "2025-11-28T00:28:28.063Z",
"modifier": "text",
"environment": {
"id": 1,
"displayName": "text"
}
}
}Enter your bearer token in the format Bearer <token>
API key identifier
Name of the API key
API key updated
API key not found
PUT /api/v1/api-management/access/api-keys/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}No content
Enter your bearer token in the format Bearer <token>
API key identifier
API key deleted
API key not found
DELETE /api/v1/api-management/access/api-keys/{id} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No content
Enter your bearer token in the format Bearer <token>
API key name (case-insensitive)
OK
API key not found
GET /api/v1/api-management/access/api-keys/name/{name} HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"data": {
"name": "text",
"id": 1,
"value": "123e4567-e89b-12d3-a456-426614174000",
"modified": "2025-11-28T00:28:28.063Z",
"modifier": "text",
"environment": {
"id": 1,
"displayName": "text"
}
}
}Was this helpful?

