USR_GRP_MGR
, que permite consultar membros de grupos.Id
: ID do usuárioNome
: Nome completo do usuárioIdOrganizacao
: ID da organizaçãoIsDeleted
: Indica se o usuário está desativado no sistemacurl --location --request POST '/api/GrupoUsuario/get-usuarios-grupo/' \
--header 'Content-Type: application/json' \
--data-raw '{
"pagination": {
"pageNumber": 2,
"pageSize": 20
},
"filter": {
"items": [
{
"field": "Nome",
"operator": "Contains",
"value": "João"
},
{
"field": "IsDeleted",
"operator": "Equals",
"value": "false"
}
]
},
"ordering": {
"items": [
{
"field": "Nome",
"direction": "Asc"
},
{
"field": "Id",
"direction": "Desc"
}
]
},
"search": "martins"
}'
{
"id": "1f35457e-cf24-4eb3-9b67-7e9cfd8c1234",
"nome": "Ana Martins",
"idOrganizacao": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"isDeleted": false
}