curl --request GET \
--url https://api.cashful.africa/api/canary/customers/{id} \
--header 'Authorization: Bearer <token>'{
"id": "customer_789",
"merchantId": "merchant_456",
"phoneNumber": "+27821234567",
"email": "john.doe@example.com",
"name": "John Doe",
"metadata": {
"source": "web",
"referralCode": "FRIEND123"
},
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}Gets the details for a single customer
curl --request GET \
--url https://api.cashful.africa/api/canary/customers/{id} \
--header 'Authorization: Bearer <token>'{
"id": "customer_789",
"merchantId": "merchant_456",
"phoneNumber": "+27821234567",
"email": "john.doe@example.com",
"name": "John Doe",
"metadata": {
"source": "web",
"referralCode": "FRIEND123"
},
"createdAt": "2025-01-15T10:30:00.000Z",
"updatedAt": "2025-01-15T10:30:00.000Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the customer
Successfully retrieved customer details