Last updated 1 month ago
Get the list of customer
"Privit Drive 2"
"London"
"UK"
"2024-10-08T09:07:49.419Z"
"Tod"
"tod@gmail.com"
1
1234
"Sam"
"1112344"
"Created"
"Individual"
"2024-10-08T09:07:53.877Z"
const response = await fetch('{{base_url}}/v1/customer', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "address": "Privit Drive 2", "bank": null, "city": "London", "country": "UK", "createdAt": "2024-10-08T09:07:49.419Z", "detailsName": "Tod", "email": "tod@gmail.com", "id": 1, "kybScore": 1234, "kybStatus": null, "name": "Sam", "phone": "1112344", "status": "Created", "type": "Individual", "updatedAt": "2024-10-08T09:07:53.877Z", "wallet": null } ]