API DocumentationManufacturer customer controller

Get a customer by ID

GET
/api/manufacturer/v1/customer/{customerId}

Retrieves details of a specific customer by their ID

Authorization

Phasio API Bearer Token
AuthorizationBearer <token>

In: header

Path Parameters

customerId*integer

ID of the customer to retrieve

Response Body

application/json

curl -X GET "https://example.com/api/manufacturer/v1/customer/1"
{  "email": "string",  "customerId": 0,  "organisationId": 0,  "organisationName": "string",  "isApproved": true,  "firstName": "string",  "lastName": "string",  "phoneNumber": "string",  "notificationPreference": "string",  "discountId": 0,  "discountPercentage": 0,  "language": "string"}
Empty

Last updated on