List API Keys

List API keys you are allowed to see. apikeys:read exposes keys on your own account; apikeys:read:sub exposes keys on descendant accounts.

Query Parameters
  • account_id
    Type: string · Account Idnullable

    Scope the listing to one account. Allowed when the caller IS that account or a parent of it. Omit to list keys on your own account.

Headers
  • Accept
    enum
    const:  
    application/json
    required

    Response format. Must be application/json.

    values
    • application/json
Responses
  • application/json
  • application/json
  • application/json
Request Example for get/v5/apikeys
curl https://api-tap2pay.netevia.dev/v5/apikeys \
  --header 'Accept: application/json' \
  --header 'x-netevia-api-key: YOUR_SECRET_TOKEN'
[
  {
    "id": "string",
    "account_id": "string",
    "name": "string",
    "key": "string",
    "key_last4": "string",
    "permissions": [
      "payments:tap-ios"
    ],
    "status": "active",
    "expires_at": "2026-08-25T19:06:51.153Z",
    "created_at": "2026-08-25T19:06:51.153Z",
    "last_used_at": "2026-08-25T19:06:51.153Z",
    "is_legacy": true,
    "always_retrievable": false
  }
]