Last updated 6 months ago
Was this helpful?
GET /api/v2/users HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "data": [ { "id": "text", "email": "text", "first_name": "text", "last_name": "text", "active": true } ], "pagination": { "total": 1, "limit": 1, "offset": 1 } }
GET /api/v2/users/{id} HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "id": "text", "email": "text", "first_name": "text", "last_name": "text", "active": true }