JSON Payload Example
 {
  "event_type": "task_deleted",
  "timestamp": "2024-11-27T12:11:11",
  "data": {
    "task_id": "556677",
    "list_id": "889900",
    "list_name": "Team Objectives",
    "task_name": "Prepare Annual Budget Report",
    "note": "Make sure to include a detailed breakdown of expenses.",
    "due_date": "2024-12-01T14:00:00Z",
    "mark_as_important": true,
    "created_by": {
      "user_id": "john.doe@example.com",
      "username": "John Doe"
    },
    "assigned_to": {
      "user_id": "jane.smith@example.com",
      "username": "Jane Smith"
    },
    "verify_by": {
      "user_id": "michael.brown@example.com",
      "username": "Michael Brown"
    },
    "deleted_by": {
      "user_id": "alice.walker@example.com",
      "username": "Alice Walker"
    }
  }
}
{
  "event_type": "task_deleted",
  "timestamp": "2024-11-27T12:11:11",
  "data": {
    "task_id": "556677",
    "list_id": "889900",
    "list_name": "Team Objectives",
    "task_name": "Prepare Annual Budget Report",
    "note": "Make sure to include a detailed breakdown of expenses.",
    "due_date": "2024-12-01T14:00:00Z",
    "mark_as_important": true,
    "created_by": {
      "user_id": "john.doe@example.com",
      "username": "John Doe"
    },
    "assigned_to": {
      "user_id": "jane.smith@example.com",
      "username": "Jane Smith"
    },
    "verify_by": {
      "user_id": "michael.brown@example.com",
      "username": "Michael Brown"
    },
    "deleted_by": {
      "user_id": "alice.walker@example.com",
      "username": "Alice Walker"
    }
  }
}
Field Descriptions
- Related Articles
- 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 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 { "event_type": "task_updated", ... 
- 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 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 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": ...