Managing Conformity api keys.
These endpoints are not applicable to users who are part of the Cloud One Platform. Please refer to Manage API keys - Identity and Account Management for more information.
List All API Keys
get/api-keys
This endpoint allows you to query your API Keys.
SecurityApiKeyAuth
Responses
200
OK
403
Forbidden. This happens when an invalid api key is provided or the user does not have access to the api keys.
Response samples
- 200
- 403
application/json
{- "data": [
- {
- "type": "api-keys",
- "id": "BJ0Ox16Hb",
- "attributes": {
- "created-date": 1597041366544,
- "status": "ENABLED",
- "last-used-date": 1597041366544,
- "ips": [
- "0.0.0.0/0"
]
}
}
]
}
Get API Key Details
get/api-keys/{keyId}
This endpoint allows you to query your API Key details.
SecurityApiKeyAuth
Responses
200
OK
403
Forbidden. This happens when a valid api key is not provided or the user does not have access to the api keys.
Response samples
- 200
- 403
application/json
{- "data": {
- "type": "api-keys",
- "id": "BJ0Ox16Hb",
- "attributes": {
- "created-date": 1597041366544,
- "status": "ENABLED",
- "last-used-date": 1597041366544,
- "ips": [
- "0.0.0.0/0"
]
}
}
}