JSON Payload Example
{
"event_type": "new_task_comment",
"timestamp": "2024-11-27T12:11:11",
"data": {
"task_id": "987654",
"list_id": "123456",
"list_name": "Team Project Tasks",
"task_name": "Prepare Monthly Report",
"comment_id": "789123",
"comment_content": "Please include the latest sales data in the report.",
"commented_by": {
"user_id": "jane.doe@example.com",
"username": "Jane Doe"
},
"note": "This task is a priority for management review.",
"due_date": "2024-12-01T18:00:00Z",
"mark_as_important": true,
"created_by": {
"user_id": "john.doe@example.com",
"username": "John Doe"
},
"assigned_to": {
"user_id": "mike.smith@example.com",
"username": "Mike Smith"
},
"verify_by": {
"user_id": "susan.lee@example.com",
"username": "Susan Lee"
}
}
}
Field Descriptions
Related Articles
Add Task Comment API
This API allows you to add a comment to a specific task in a specified list. API URL https://app.wegodoo.com/ API Endpoint POST /api/v1/tasks/comments ## Important Notes: - All API requests must be made to this base URL followed by the specific ...
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 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": ...