Api Keys
API key management and access control.
aa27a2ae-8235-426d-91ad-6e30cb494b2b["_links.user"]Returns an ApiKey
Display name for the API key
When enabled, this API key is restricted to safe, read-only HTTP methods (GET, HEAD, OPTIONS, TRACE) and cannot perform writes
falseGET /apis/v2/api-keys/{apiKeyId} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns an ApiKey
{
"id": "text",
"displayName": "text",
"apiKeySecret": "text",
"status": "ACTIVE",
"user": {
"id": "text"
},
"isReadonly": false,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}Display name for the API key
When enabled, this API key is restricted to safe, read-only HTTP methods (GET, HEAD, OPTIONS, TRACE) and cannot perform writes
falseReturns an ApiKey
Display name for the API key
When enabled, this API key is restricted to safe, read-only HTTP methods (GET, HEAD, OPTIONS, TRACE) and cannot perform writes
falseReturns an ApiKey
PATCH /apis/v2/api-keys/{apiKeyId} HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 59
{
"displayName": "text",
"status": "ACTIVE",
"isReadonly": false
}{
"id": "text",
"displayName": "text",
"apiKeySecret": "text",
"status": "ACTIVE",
"user": {
"id": "text"
},
"isReadonly": false,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}Filter by api key display name
My API Key display nameFilter by read-only status (true / false)
true110["items._links.user"]Filter by status
ACTIVEReturns an ApiKeyCollection
GET /apis/v2/api-keys HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
Returns an ApiKeyCollection
{
"items": [
{
"id": "text",
"displayName": "text",
"apiKeySecret": "text",
"status": "ACTIVE",
"user": {
"id": "text"
},
"isReadonly": false,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}
],
"_pagination": {
"page": 1,
"ipp": 1,
"count": 1,
"total": 1
},
"_links": {
"self": {
"href": "text"
}
}
}Display name for the API key
When enabled, this API key is restricted to safe, read-only HTTP methods (GET, HEAD, OPTIONS, TRACE) and cannot perform writes
falseReturns an ApiKey
Display name for the API key
When enabled, this API key is restricted to safe, read-only HTTP methods (GET, HEAD, OPTIONS, TRACE) and cannot perform writes
falseReturns an ErrorDto in case of validation errors or failures.
POST /apis/v2/api-keys HTTP/1.1
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 92
{
"displayName": "text",
"status": "ACTIVE",
"user": {
"id": "text"
},
"isReadonly": false,
"_links": {}
}{
"id": "text",
"displayName": "text",
"apiKeySecret": "text",
"status": "ACTIVE",
"user": {
"id": "text"
},
"isReadonly": false,
"errors": [
{
"code": "text",
"message": "text",
"details": {}
}
],
"_links": {}
}Last updated
Was this helpful?

