cURL
curl --request GET \ --url https://pullrule.com/api/2025-04/users \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "<string>", "name": "<string>", "email": "<string>", "profile_photo_url": "<string>", "created_at": 123 } ], "meta": { "path": "<string>", "per_page": 123, "next_cursor": "<string>", "prev_cursor": "<string>" }, "links": { "first": "<string>", "last": "<string>", "prev": "<string>", "next": "<string>" } }
Lists all users in the current organisation. The users are returned sorted by name.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Paginated set of User
User
Show child attributes