Task Created Event

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

Notes
{
  "event_type": "task_created",
  "timestamp": "2024-11-27T12:11:11",
  "data": {
    "task_id": 987,
    "list_id": 654,
    "list_name": "Marketing Campaign Tasks",
    "task_name": "Design Social Media Post",
    "created_by": {
      "user_id": "jane.doe@example.com",
      "username": "Jane Doe"
    }
  }
}



Field Descriptions

  • event_type: The type of event that triggered the webhook (task_created in this case).
  • timestamp: The time the event occurred in ISO 8601 format.
  • data: Contains detailed information about the created 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 created task.
    • created_by: Information about the user who created the task:
      • user_id: Email ID of the task creator.
      • username: Name of the task creator.

    • Related Articles

    • 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 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 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 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": ...