Retrieve Customer

Retrieves a single customer, if the requesting manager has access permissions to it.

  • Method: GET

  • URL: /api/v1/customers/{id}/

customer.json
{
    "id": 620,
    "total_orders": 52,
    "total_licenses": 117,
    "labels": [
        {
            "id": 3,
            "label_id": 8,
            "label": "Customer",
            "color": "#ff9f43"
        },
        {
            "id": 53,
            "label_id": 34,
            "label": "Loyal",
            "color": "#3a0cd4"
        }
    ],
    "customer_account": null,
    "email": "[email protected]",
    "first_name": "Nameo",
    "last_name": "",
    "company_name": "",
    "phone": "",
    "reference": "",
    "address": "",
    "postcode": "",
    "city": "",
    "country": "",
    "state": "",
    "clabels_all": "customerloyal",
    "cognito_user_pool_id": "",
    "metadata": {},
    "company": 277,
    "license_user": 1879,
    "clabels": [
        8,
        34
    ]
}

Was this helpful?