cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#CLICKUP_SEARCH_TASKS' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "CLICKUP_SEARCH_TASKS", "parameters": { "taskFilterFormula": { "operator": "OR", "conditions": [ { "operator": "AND", "conditions": [ { "field": "space_ids%5B%5D", "operator": "$stringExactlyMatches", "value": "<string>" } ] } ] } } } '
Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
A filter in disjunctive normal form: OR of AND groups of single conditions
Top-level operator must be OR (DNF enforced)
OR
Each item is an AND group (a conjunction of single conditions)
Each group is an AND of single conditions
AND
List of single conditions (AND together)
space_ids%5B%5D
project_ids%5B%5D
list_ids%5B%5D
statuses%5B%5D
include_closed
assignees%5B%5D
tags%5B%5D
due_date_gt
due_date_lt
date_created_gt
date_created_lt
date_updated_gt
date_updated_lt
$stringExactlyMatches
$numberEquals
$booleanFalse
$booleanTrue
$dateTimeEquals
Value to compare against
Success
Was this page helpful?