The Task Reminder event is triggered whenever the reminder time for a task is set in the WeGoDoo application. When this event occurs, a webhook will send the following JSON payload to the configured endpoint:
event_type: The type of event that triggered the webhook (task_reminder
in this case).
timestamp: The time the event occurred in ISO 8601 format.
data: Contains detailed information about the task for which the reminder is set:
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 task.
task_url: A clickable URL or link to the task's detailed view.
note: Additional notes or context provided for the task. This field can be empty.
due_date: The due date and time 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.
assigned_to: Information about the user to whom the task was assigned:
user_id: Email ID of the assigned user. This field can be empty.
username: Name of the assigned user. This field can be empty.
verify_by: Information about the user responsible for verifying the task:
user_id: Email ID of the verifier. This field can be empty.
username: Name of the verifier. This field can be empty.