Search for clients
POST/clients/search
search for clients based on some criteria
Get all clients identifying as male and sort by birthdate
{
"filterConstraints":[
{
"filterSelection":"GENDER",
"filterElement":"EQUALS",
"value":"MALE"
}
],
"sortDetails": {
"sortingColumn": "BIRTHDATE",
"sortingOrder": "DESC"
}
}
Get all clients added this month
{
"filterConstraints":[
{
"filterSelection":"CREATION_DATE",
"filterElement":"THIS_MONTH"
}
]
}
Request
Responses
- 200
ok