Skip to main content
GET
/
api-keys
/
resolve-client-key
Resolve client key to integrator and API keys
curl --request GET \
  --url http://localhost:4000/v1/api-keys/resolve-client-key \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "message": "<string>",
  "statusCode": 123,
  "timestamp": "<string>",
  "data": {
    "integratorId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
    "apiKeys": [
      {
        "id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
        "name": "Production API Key",
        "description": "API key for production environment",
        "prefix": "sk_live_v1",
        "lastFour": "y5z6",
        "scopes": [
          "INTEGRATOR"
        ],
        "active": true,
        "expiresAt": "2026-01-11T12:00:00.000Z",
        "createdAt": "2025-01-11T12:00:00.000Z",
        "updatedAt": "2025-01-11T12:00:00.000Z"
      }
    ],
    "isValid": true
  },
  "path": "<string>"
}

Authorizations

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Query Parameters

clientKey
string
required

Client key to resolve

Example:

"sk_client_v1_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0u1v2w3x4y5z6"

Response

success
boolean
required
message
string
required
statusCode
number
required
timestamp
string
required
data
object
path
string