Retrieve customer
Get Customers Endpoint - Yativo
The GET
/customer/{{customer_id}}
endpoint allows you to retrieve detailed information about a specific customer using their unique customer ID. This endpoint is useful for accessing and displaying customer data within your application or for performing operations that require customer details.
Key Features:
HTTP Method:
GET
Endpoint URL:
/customer/{{customer_id}}
Authentication: Requires Bearer token to ensure secure access.
Response Structure:
Status Code:
200 OK
on success, with other codes indicating various errors (e.g.,401 Unauthorized
,404 Not Found
).
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Request sample and Response
Last updated