Users

POST https://www.pepdata.com/api/get_users

Headers

Name
Type
Description

Authorization*

string

key [API_KEY]

Request Body

Name
Type
Description

id

string

Id of the user

page

number

Page of the users

Default: 1

{
    "data": {
        "items": [
            {
                "id": "ab152600-4cf5-6b7e-813b-3a4f8bda8f66",
                "name": "John Smith",
                "email": "[email protected]",
            },
            {
                "id": "f59c0220-7d33-d2a3-fc42-35030d14c794",
                "name": "Mary Elizabeth Barton",
                "email": "[email protected]",
            },
        ],
        "count": 2,
        "total": 2,
        "page": 1,
        "max_results_per_page": 50
    },
    "version": "0.1",
    "timestamp": 1646390980644
}

Label

  • id: user id.

  • name: name of the user.

  • email: user email.

Last updated

Was this helpful?