curl --request POST \
--url https://sandbox.tight.com/v6/tasks/query \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cursor": "<string>",
"limit": 123,
"filter": {
"priority": {
"in": [
"URGENT"
],
"notIn": [
"URGENT"
]
},
"type": {
"in": [
"MESSAGE_REVIEW"
],
"notIn": [
"MESSAGE_REVIEW"
]
},
"status": {
"in": [
"ACTIVE"
],
"notIn": [
"ACTIVE"
],
"equal": "ACTIVE",
"notEqual": "ACTIVE",
"greaterThan": "ACTIVE",
"greaterThanEqual": "ACTIVE",
"lessThan": "ACTIVE",
"lessThanEqual": "ACTIVE"
}
}
}
'