API Keys

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
application/json
{
  • "data": [
    ]
}

Get API Key Details

get/api-keys/{keyId}

This endpoint allows you to query your API Key details.

SecurityApiKeyAuth
Request
path Parameters
keyId
required
string

The ID of the api key.

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
application/json
{
  • "data": {
    }
}