API DocumentationManufacturer customer controller

Get a customer by ID

Retrieves details of a specific customer by their ID

GET
/api/manufacturer/v1/customer/{customerId}
AuthorizationBearer <token>

In: header

Path Parameters

customerIdinteger

ID of the customer to retrieve

Formatint64

Response Body

curl -X GET "http://m-api-dev.phas.io/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
}
Empty

Last updated on