Get Tasks
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#ASANA_GET_TASKS' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "ASANA_GET_TASKS",
"parameters": {
"workspace": "<string>",
"project": "<string>",
"assignee": "<string>",
"completedSince": "<string>"
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
Workspace : The ID of the Workspace to filter tasks on. Use Connect Portal Workflow Settings to allow users to select a Workspace. (example: "{{settings.workspace}}")
Project : The ID of the Project to filter tasks on. Use Connect Portal Workflow Settings to allow users to select a Project. (example: "{{settings.project}}")
Assignee : The ID of the assignee to filter tasks on. Use Connect Portal Workflow Settings to allow users to select an Assignee. (example: "{{settings.assignee}}")
Completed since : Only return tasks that are either incomplete or that have been completed since this time (ISO or Unix timestamp). (example: "2014-04-25T16:15:47-04:00")
Response
Success
Was this page helpful?
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#ASANA_GET_TASKS' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "ASANA_GET_TASKS",
"parameters": {
"workspace": "<string>",
"project": "<string>",
"assignee": "<string>",
"completedSince": "<string>"
}
}'