Task Updated Event

Task Updated Event

The Task Updated event is triggered whenever a task is updated in the WeGoDoo application. When this event occurs, a webhook will send the following JSON payload to the configured endpoint:


JSON Payload Example

Notes
{
  "event_type": "task_updated",
  "timestamp": "2024-11-27T12:11:11",
  "data": {
    "task_id": "112233",
    "list_id": "334455",
    "list_name": "Team Goals for Q4",
    "task_name": "Prepare Sales Report",
    "note": "Include quarterly revenue charts and expense breakdown",
    "due_date": "2024-12-05T15:00:00Z",
    "mark_as_important": true,
    "created_by": {
      "user_id": "john.doe@example.com",
      "username": "John Doe"
    },
    "completed_by": {
      "user_id": "jane.smith@example.com",
      "username": "Jane Smith"
    },
    "assigned_to": {
      "user_id": "alice.brown@example.com",
      "username": "Alice Brown"
    },
    "verify_by": {
      "user_id": "bob.jones@example.com",
      "username": "Bob Jones"
    },
    "updated_by": {
      "user_id": "carol.taylor@example.com",
      "username": "Carol Taylor"
    }
  }
}

Field Descriptions

  • event_type: The type of event that triggered the webhook (task_updated in this case).
  • timestamp: The time the event occurred in ISO 8601 format.
  • data: Contains detailed information about the updated task:
    • task_id: Unique identifier of the task.
    • list_id: Unique identifier of the list containing the task.
    • list_name: Name of the list containing the task.
    • task_name: Name of the updated task.
    • note: Additional notes or context provided for the task.
    • due_date: The updated due date for the task in ISO 8601 format.
    • mark_as_important: Boolean flag indicating if the task is marked as important.
    • created_by: Information about the user who originally created the task:
      • user_id: Email ID of the task creator.
      • username: Name of the task creator.
    • completed_by: Information about the user who completed the task:
      • user_id: Email ID of the user who marked the task as completed.
      • username: Name of the user who marked the task as completed.
    • assigned_to: Information about the user to whom the task is currently assigned:
      • user_id: Email ID of the assigned user.
      • username: Name of the assigned user.
    • verify_by: Information about the user responsible for verifying the task:
      • user_id: Email ID of the verifier.
      • username: Name of the verifier.
    • updated_by: Information about the user who updated the task:
      • user_id: Email ID of the user who updated the task.
      • username: Name of the user who updated the task.

    • Related Articles

    • Task Completed Event

      The Task Completed event is triggered whenever a task is marked as completed in the WeGoDoo application. When this event occurs, a webhook will send the following JSON payload to the configured endpoint: JSON Payload Example { "event_type": ...
    • Task Created Event

      The Task Created event is triggered whenever a new task is created in the WeGoDoo application. When this event occurs, a webhook will send the following JSON payload to the configured endpoint: JSON Payload Example { "event_type": "task_created", ...
    • Task Deleted Event

      The Task Deleted event is triggered whenever a task is deleted in the WeGoDoo application. When this event occurs, a webhook will send the following JSON payload to the configured endpoint: JSON Payload Example { "event_type": "task_deleted", ...
    • Task Verified Event

      The Task Verified event is triggered whenever a task is verified in the WeGoDoo application. When this event occurs, a webhook will send the following JSON payload to the configured endpoint: JSON Payload Example { "event_type": "task_verified", ...
    • Task Comment Event

      The Task Comment event is triggered whenever a new comment is added to a task in the WeGoDoo application. When this event occurs, a webhook will send the following JSON payload to the configured endpoint: JSON Payload Example { "event_type": ...