Usuarios

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 de usario

page

number

Página de usuarios

Default: 1

{
    "data": {
        "items": [
            {
                "id": "ab152600-4cf5-6b7e-813b-3a4f8bda8f66",
                "name": "Carlos García",
                "email": "[email protected]",
            },
            {
                "id": "f59c0220-7d33-d2a3-fc42-35030d14c794",
                "name": "Daniela Lopez",
                "email": "[email protected]",
            },
        ],
        "count": 2,
        "total": 2,
        "page": 1,
        "max_results_per_page": 50
    },
    "version": "0.1",
    "timestamp": 1646390980644
}

Leyenda

  • id: identificación del usuario

  • name: nombre de usuario

  • email: correo del usuario

Last updated

Was this helpful?