Paged user search

Find users given a criteria. The criteria object can have multiple fields set in which case they are treated as an "AND".

Request
Security:
vc-security
Request Body schema: application/json
object (UserCriteria)
object (PageRequest)
Responses
200

OK

400

Bad Request. The request parameters (or body) were malformed or invalid. Fix the issues with the request and try again.

401

Unauthorized request. Make sure token was included and is valid and try again.

403

Forbidden. You are not permitted to access the requested resource.

post/user-service/v1/user/pageSearch
Request samples
application/json
{
  • "criteria": {
    },
  • "pageRequest": {
    }
}
Response samples
application/json
{
  • "totalCount": 0,
  • "pageRequest": {
    },
  • "items": [
    ],
  • "totalPages": 0
}