get users by filter
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"fields": [
"email",
"xp",
"join_date"
],
"filter": {
"xp": {
"gt": 100
},
"join_date": {
"gte": "2025-07-20",
"lte": "2025-07-28"
},
"customer": "true"
},
"page": 1,
"limit": 100
}
Request samples
curl --location --request POST 'https://integration.returning.ai/apis/v1/users/filter' \
--header 'Content-Type: application/json' \
--data-raw '{
"fields": [
"email",
"xp",
"join_date"
],
"filter": {
"xp": {
"gt": 100
},
"join_date": {
"gte": "2025-07-20",
"lte": "2025-07-28"
},
"customer": "true"
},
"page": 1,
"limit": 100
}'
Responses
application/json Modified at 2025-07-30 05:56:20