Last updated 5 months ago
Was this helpful?
curl -L \ --url 'https://api.apono.io/api/v2/users' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "data": [ { "id": "text", "email": "text", "first_name": "text", "last_name": "text", "active": true } ], "pagination": { "total": 1, "limit": 1, "offset": 1 } }
curl -L \ --url 'https://api.apono.io/api/v2/users/{id}' \ --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{ "id": "text", "email": "text", "first_name": "text", "last_name": "text", "active": true }