Usuarios
Obtener usuarios
GET /v1/users
Permite la posibilidad de obtener el listado de usuarios.
Parámetros | Descripción |
---|---|
page
|
|
size
|
|
email
|
|
merchantId
|
|
curl --location --request GET 'https://api.menta.global/api/v1/users?page=0&size=10' \
--header 'Authorization: Bearer {access_token}'
{
"users": [
{
"attributes": {
"id": "string",
"name": "string",
"description": "string",
"email": "string",
"customer_id": "array",
"merchant_id": "array",
"country": "string",
"type": "string",
"scope": "string"
},
"status": "string",
"enabled": boolean,
"audit": {
"creation_date": "2019-02-05T21:03:54.499+0000",
"update_date": "2019-02-05T21:03:54.499+0000"
}
}
],
"metadata": {
"size": 0,
"total_elements": 0,
"total_pages": 0,
"number": 0
}
}