Last updated 16 days ago
Successful retrieval of customers data
const response = await fetch('https://api.getfractal.xyz/v0/customers', { method: 'GET', headers: { "Authorization": "text" }, }); const data = await response.json();
{ "items": [ { "customer_id": "123e4567-e89b-12d3-a456-426614174000", "email": "name@gmail.com", "company_name": "text", "first_name": "text", "last_name": "text" } ] }