get/customer/keys?customerId=<CUSTOMER_ID>

Get Customer Keys

List all license keys currently assigned to a specific customer.

Authentication required: Bearer Token in Authorization header.

Parameters

customerIdrequired
string (query)

ID of the customer

e.g. <CUSTOMER_ID>

Responses

200Successfully retrieved customer license keys

Response Body (200)

action
string
status
boolean
data
array
code
integer
Request Example
curl -X GET "https://api.keymint.dev/customer/keys?customerId=%3CCUSTOMER_ID%3E" \
  -H "Authorization: Bearer <YOUR_API_KEY>"
Response (200 OK)
{
  "action": "getCustomerLicenseKeys",
  "status": true,
  "data": [],
  "code": 0
}