GET
/
project
/
{id}
/
key
/
{key_id}
curl --request GET \
  --url http://localhost:3003/project/{id}/key/{key_id} \
  --header 'Authorization: Bearer <token>'
{
  "key": {
    "id": "<string>",
    "label": "<string>",
    "roles": "<string>",
    "created_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

JWT Authorization Token header using the Bearer scheme

Path Parameters

id
string
required

Unique identifier of the project

key_id
string
required

Unique identifier of the API key

Response

200
application/json

API key details retrieved successfully

key
object