Last updated 7 days ago
The unique identifier of the customer
Successful retrieval of customer data
The unique identifier for the customer
The email address associated with the customer
const response = await fetch('https://api.alignlabs.dev/v0/customers/{customer_id}', { method: 'GET', headers: { "Authorization": "text" }, }); const data = await response.json();
{ "customer_id": "123e4567-e89b-12d3-a456-426614174000", "email": "name@gmail.com", "kycs": { "status": "pending", "kyc_flow_link": "text" } }