Skip to main content
GET
/
v2
/
client-ids
/
{id}
Get a specific client ID
curl --request GET \
  --url https://api.stage.request.network/v2/client-ids/{id}
{
  "id": "<string>",
  "clientId": "<string>",
  "label": "<string>",
  "allowedDomains": [
    "<string>"
  ],
  "feePercentage": "<string>",
  "feeAddress": "<string>",
  "status": "<string>",
  "createdAt": "<string>",
  "updatedAt": "<string>",
  "lastUsedAt": "<string>"
}

Headers

x-api-key
string

API key for authentication (optional if using session)

Authorization
string

Bearer token for session authentication (optional if using API key)

Example:

"Bearer <session-token>"

Path Parameters

id
string
required

Client ID internal identifier

Example:

"123"

Response

Client ID details

id
string
clientId
string
label
string
allowedDomains
string[]
feePercentage
string | null
feeAddress
string | null
status
string
createdAt
string
updatedAt
string
lastUsedAt
string | null