Get Customer Details By Uuid
complete profile for an existing customer. The response includes the customer's personal information and their billing and shipping addresses.
#ndpoint
| {CUSTOMER_UUID}
||
| ||
this endpoint, include a Bearer Token in the Authorization header of your request. You can obtain this token from Frontpayment.
Response |
successful request will return a 200 OK status with the following JSON payload:
|
404
error, it means requested customer with CUSTOMER_UUID
could not be found in our system.
{
"status_code": 404,
"status_message": "Not Found",
"message": "customerNotFound",
"is_data": false,
"data": null
}
API returns a 510
error, it means something failed on the server side
{
"status_code": 510,
"status_message": "Execution Exception Occurred",
"message": "Something Went Wrong",
"is_error": true,
"errors": "Array"
}