Listar Usuarios

{info} Usar el token obtenido en la autenticación.


URL

METHOD PATH HEADERS
POST /usuario/listar Content-Type:application/json

Parámetros

NAME TYPE DESCRIPTION CONDITION
token STRING Content-Type:application/json required
limit INTEGER Cantidad de usuario a listar optional
Order INTEGER Orden en el cual se mostrarán los usuarios (descendente por defecto) optional
{   
    "token": "string|hash",
    "limit": integer,
    "order": "string"
}

Solicitud exitosa

{success} Solicitud Aceptada

HTTP_CODE 200

Contenido

{
    "success": 1,
    "msg": "string|hashed",
    "Users": {}
}

Solicitud no exitosa

{danger} Solicitud no aceptada

HTTP_CODE 500

Contenido

{
    "success": 0,
    "msg": "string|description"
}