Skip to main content
GET
/
entities
/
{entity}
/
api-keys
/
{apiKey}
Get an entity API key
curl --request GET \
  --url https://api.staging-2tid4c.ezyshield.com.au/management/v1/entities/{entity}/api-keys/{apiKey} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "abilities": [
      "<string>"
    ],
    "creator": {
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    },
    "created_at": "2023-11-07T05:31:56Z",
    "last_used_at": "2023-11-07T05:31:56Z",
    "expires_at": "2023-11-07T05:31:56Z",
    "token": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

entity
string<uuid>
required

The entity ID

apiKey
string<uuid>
required

The API key ID

Response

ApiKeyResource

data
ApiKeyResource · object
required