We tried our best, but there was an error processing your request. If this keeps happening, please refresh your browser or contact support.
Users Endpoint

This endpoint allows you to list the user logins in your workspace.

Listing Users

A GET returns the users in your workspace, ordered by newest created first.

  • email - the email address of the user (string).
  • first_name - the first name of the user (string).
  • last_name - the last name of the user (string).
  • role - the role of the user (string), filterable as role which can be repeated.
  • created_on - when this user was created (datetime).

Example:

GET /api/v2/users.json

Response:

{
    "next": null,
    "previous": null,
    "results": [
    {
        "avatar": "https://..."
        "email": "bob@flow.com",
        "first_name": "Bob",
        "last_name": "McFlow",
        "role": "agent",
        "created_on": "2013-03-02T17:28:12.123456Z"
    },
    ...