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