curl --request POST \
--url https://sandbox.tight.com/v6/integrations/query \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"cursor": "<string>",
"limit": 123,
"sort": {
"orderBy": "ID",
"direction": "ASC"
},
"filter": {
"status": {
"in": [
"ACTIVE"
],
"notIn": [
"ACTIVE"
],
"equal": "ACTIVE",
"notEqual": "ACTIVE",
"greaterThan": "ACTIVE",
"greaterThanEqual": "ACTIVE",
"lessThan": "ACTIVE",
"lessThanEqual": "ACTIVE"
},
"apiName": {
"in": [
"BOX"
],
"notIn": [
"BOX"
],
"equal": "BOX",
"notEqual": "BOX"
}
}
}
'