Skip to content

Get Customer

Retrieve a single customer by ID.

GET /v1/customers/:id

Path Parameters

ParameterDescription
idCustomer ID

Response

json
{
  "data": {
    "id": "cus_xxx",
    "email": "customer@example.com",
    "name": "John Doe",
    "company": "Acme Inc",
    "phone": "+1234567890",
    "createdAt": "2026-01-01T00:00:00.000Z",
    "updatedAt": "2026-01-15T00:00:00.000Z",
    "licenses": [
      {
        "id": "lic_xxx",
        "licenseKey": "MYPLUGIN-XXXX-XXXX-XXXX-XXXX",
        "productId": "prd_xxx",
        "status": "active"
      }
    ]
  }
}

Example

bash
curl -X GET "https://api.packedge.dev/v1/customers/cus_xxx" \
  -H "Authorization: Bearer pk_your_api_key"