GET
/
v1
/
api-keys
List API keys
curl --request GET \
  --url https://api.wazapin.com/v1/api-keys \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "created_at": "<string>",
      "created_by": "<string>",
      "expires_at": "<string>",
      "id": "<string>",
      "is_active": true,
      "key_prefix": "<string>",
      "name": "<string>",
      "scopes": "<unknown>"
    }
  ],
  "meta": {
    "has_more": true,
    "limit": 123,
    "cursor": "<string>",
    "offset": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Session token or API key

Response

OK

data
object[] | null
required
meta
object
required