Loading...
OK
const response = await fetch('https://api.apono.io/api/v2/users/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "id": "text", "email": "text", "first_name": "text", "last_name": "text", "active": false }
const response = await fetch('https://api.apono.io/api/v2/users', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "id": "text", "email": "text", "first_name": "text", "last_name": "text", "active": false } ], "pagination": {} }