List access key versions
GET https://{{host}}/cam/v1/access-keys/:accessKeyUid/versions
Returns detailed information about all of the versions for a specific access key.
Body
PARAM
Key | Datatype | Required | Description |
accountSwitchKey
|
string | (Optional) For customers who manage more than one account, this [runs the operation from another account](https://techdocs.akamai.com/developer/docs/manage-many-accounts-with-one-api-client). The Identity and Access Management API provides a [list of available account switch keys](https://techdocs.akamai.com/iam-api/reference/get-client-account-switch-keys). |
HEADERS
Key | Datatype | Required | Description |
Accept
|
string |
RESPONSES
status OK
{
"accessKeyVersions": [
{
"accessKeyUid": 12345,
"cloudAccessKeyId": null,
"createdBy": "jsmith",
"createdTime": "2021-02-26T14:48:27.355346Z",
"deploymentStatus": "PENDING_ACTIVATION",
"version": 2,
"versionGuid": "af434285-7841-11eb-817b-1f41209f67ec"
},
{
"accessKeyUid": 12345,
"cloudAccessKeyId": null,
"createdBy": "mrossi",
"createdTime": "2021-02-26T13:34:37.916873Z",
"deploymentStatus": "ACTIVE",
"version": 1,
"versionGuid": "5f1c8194-7837-11eb-817b-1b3f28104c18"
}
]
} |
ENDPOINTS