How to complete form fields in a task using our API
To complete form fields in a process task, follow these simple steps:
-
Gather your information: Make a GET request to
go.tallyfy.com/api/organizations/{org}/me/tasks
to obtain the necessary information for updating the task. -
Decide how to proceed: To fill out the form fields and mark the task as complete, send a POST request to
https://go.tallyfy.com/api/organizations/{org}/runs/{run_id}/completed-tasks
. If you only want to update the task without marking it as complete, send a PUT request tohttps://go.tallyfy.com/api/organizations/{org}/runs/{run_id}/tasks/{task_id}
. -
Submit your payload: Whether you’re marking the task as complete or just updating it, use the following payload structure:
{
"taskdata": {
"${id_of_field_to_be_completed}": "${desired_value}"
}
}
If you need assistance with integrations and advanced features, contact Tallyfy Support for additional services.