Hi YeeFlow,
I try to follow Yeeflow APIs | Yeeflow Developer Site to search user by API.
It return all active user with I use
{
"PageIndex": 0,
"PageSize": 0,
"OrgID": 0,
"Status": 1
}
But after I add a “Wheres” condition, (below)
{
"PageIndex": 0,
"PageSize": 0,
"OrgID": 0,
"Status": 1,
"Wheres": [
{
"Field": "Email",
"Value": "sam@myemaildomain.com",
"Type": 0
}
]
}
it return error message (below)
{
"Data": [],
"Status": 1,
"Message": "system error",
"TotalCount": 0
}
Please help, Thanks!