cURL
curl --request GET \
--url https://cockroachlabs.cloud/api/v1/api-keys/{id} \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'{
"created_at": "2022-03-22T20:23:11.285067Z",
"id": "CCDB1_12345abcdefGHIJKLMnopq",
"name": "example name",
"service_account_id": "1234abcd-1234-1234-abcd-12345678abcd"
}{
"code": 123,
"details": [
{
"@type": "<string>"
}
],
"message": "<string>"
}Can be used by the following roles assigned at the organization scope:
- ORG_ADMIN
- CLUSTER_ADMIN
- AUDITOR
GET
/
api
/
v1
/
api-keys
/
{id}
cURL
curl --request GET \
--url https://cockroachlabs.cloud/api/v1/api-keys/{id} \
--header 'Authorization: Bearer REPLACE_BEARER_TOKEN'{
"created_at": "2022-03-22T20:23:11.285067Z",
"id": "CCDB1_12345abcdefGHIJKLMnopq",
"name": "example name",
"service_account_id": "1234abcd-1234-1234-abcd-12345678abcd"
}{
"code": 123,
"details": [
{
"@type": "<string>"
}
],
"message": "<string>"
}This endpoint is in Preview and subject to change. Refer to the API support policy for more details.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
the ID of the api key.
Response
A successful response.
the creation time of the api key.
Example:
"2022-03-22T20:23:11.285067Z"
the ID of the api key.
Example:
"CCDB1_12345abcdefGHIJKLMnopq"
Example:
"api key name"
the ID of the service account the api key references.
Example:
"1234abcd-1234-1234-abcd-12345678abcd"

