Api reference
Retrieve the authenticated customer
Returns the customer represented by the bearer token. Useful as a warm-up / identity check when an embedded portal page loads.
Related endpoints
POST /customer-portal/sessions— Create a customer-portal sessionGET /customer-portal/subscriptions— List the authenticated customer's subscriptionsGET /customer-portal/subscriptions/{id}— Retrieve a subscriptionPOST /customer-portal/subscriptions/{id}/cancel— Cancel a subscriptionGET /customer-portal/invoices— List the authenticated customer's invoicesGET /customer-portal/invoices/{id}— Retrieve an invoice
Common errors
401 unauthenticated— missing, malformed, or revoked API key.404 resource_missing— the referenced resource does not exist or is not visible to your key.
x-api-key<token>
Your RevKeen API key (powered by Unkey). Get it from Dashboard > Settings > API Keys. Use rk_sandbox_* for test mode and rk_live_* for production.
In: header
Response Body
application/json
application/json
application/json
curl "https://api.revkeen.com/v2/customer-portal/customer" \ -H "x-api-key: $REVKEEN_API_KEY"{
"data": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"object": "customer",
"email": "user@example.com",
"name": "string",
"phone": "string",
"company_name": "string",
"default_currency": "string",
"locale": "string",
"created_at": "2019-08-24T14:15:22Z"
}
}{
"error": {
"type": "string",
"code": "string",
"message": "string"
}
}{
"error": {
"type": "string",
"code": "string",
"message": "string"
}
}