eq =
ne, !=
like, like %%
gt, >
gte, >=
lt, <
lte, <=
dateEq, =
in, in
dateGte, >=
dateLte; <=
{
"condition": [
{
"operation": "eq",
"value": 0,
"field": "ismanager"
}
],
"pageNo": 1,
"pageSize": 30
}
curl --location --request POST '/snc/tenantaccount/search' \
--header 'Ssotoken: {{accessToken}}' \
--header 'x-timestamp: 1713748800833' \
--header 'x-signature: KUXSucUrpWVx4Cjfq8XNig7l3yKhqLycqDMoJhHJpPU=' \
--header 'x-app-id: sncsit' \
--header 'Content-Type: application/json' \
--data-raw '{
"condition": [
{
"operation": "eq",
"value": 0,
"field": "ismanager"
}
],
"pageNo": 1,
"pageSize": 30
}'
{
"returncode": "string",
"data": {
"pageNo": 0,
"pageSize": 0,
"pageCount": 0,
"total": 0,
"pageData": [
{
"ismanager": 0,
"accountcode": "string",
"accountname": "string",
"tenantid": "string",
"status": 0,
"email": "string",
"mobileno": "string",
"modifiername": "string",
"modifytime": "string",
"creatorname": "string",
"createtime": "string"
}
]
},
"message": "string",
"traceId": "string",
"now": "string"
}