cURL
curl --request GET \ --url http://localhost:4000/v1/users \ --header 'Authorization: Bearer <token>'
200
Example
{ "data": { "users": [ { "id": 123, "firstName": "<string>", "lastName": "<string>", "email": "<string>", "phoneNumber": "<string>", "timeZone": "<string>", "profilePicture": "<string>", "verified": true, "createdAt": "2023-11-07T05:31:56Z", "deletedAt": "<unknown>" } ], "count": 123 } }
List users for the account with pagination and search
API key required in Authorization header. Format: iclosed-<token>
iclosed-<token>
1 <= x <= 100
x >= 0
List of users and total count
Show child attributes