logo
ClientClient_uuid
POST
/client/{client_uuid}

Authorization

x-api-key<token>

HMAC-SHA256 signed key produced by the apikee engine. Format: <base62-id>.<base62-claims>.<base62-hmac> The first 12 characters are the keyPrefix (safe for logging).

In: header

Path Parameters

client_uuid*string
Formatuuid

Query Parameters

project_env?string

e.g. my-app-production

method_path*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://apikee.dev/api/v1/client/497f6eca-6276-4993-bfeb-53cbbbba6f08?method_path=string" \  -H "Content-Type: application/json" \  -d '{    "name": "Prod Key",    "timestamp": "2026-03-14T20:45:00Z",    "headers": {      "user-agent": "curl/8.5.0",      "x-forwarded-for": "203.0.113.1"    },    "payload": {      "userId": 12345    }  }'
{
  "success": true,
  "clientId": "string",
  "project_env": "string",
  "method_path": "string",
  "durationMs": 0
}