Actions57
- Objects Actions
- Attributes Actions
- List Attributes
- Get Attribute
- Update Attribute
- GET target/identifier/attributes/attribute/options
- POST target/identifier/attributes/attribute/options
- PATCH target/identifier/attributes/attribute/options/option
- POST target/identifier/attributes/attribute/statuses
- Create Attribute
- GET target/identifier/attributes/attribute/statuses
- PATCH target/identifier/attributes/attribute/statuses/status
- Entries Actions
- Records Actions
- Lists Actions
- Meta Actions
- Workspace Members Actions
- Notes Actions
- Tasks Actions
- Webhooks Actions
- Threads Actions
- Comments Actions
Overview
This node updates an existing task in the Attio system by sending a PATCH request to the Attio API. It is useful for scenarios where you need to modify task details such as deadlines, completion status, linked records, or assignees programmatically within an automation workflow. For example, you can update a task's deadline or mark it as completed based on other workflow conditions.
Use Case Examples
- Updating a task's deadline and completion status.
- Assigning a task to a different workspace member.
- Linking a task to specific records such as people or projects.
Properties
| Name | Meaning |
|---|---|
| Task Id | The unique identifier of the task to update. |
| Data | The JSON object containing the fields and values to update on the task, such as deadline, completion status, linked records, and assignees. |
Output
JSON
json- The JSON response from the Attio API representing the updated task object.
Dependencies
- Requires an API key credential for Attio API authentication.
Troubleshooting
- Ensure the Task Id provided is valid and exists in the Attio system to avoid 'not found' errors.
- The Data property must be a valid JSON object; invalid JSON will cause parsing errors.
- API authentication errors may occur if the API key credential is missing or invalid; verify credentials are correctly configured.
- Network or API endpoint issues can cause request failures; check connectivity and API status.
Links
- Attio API - Update Task - Official Attio API documentation for updating a task.