curl --request POST \
--url http://localhost:3333/v1/internal/tasks/notify-status-change \
--header 'Content-Type: application/json' \
--data '
{
"organizationId": "<string>",
"taskId": "<string>",
"taskTitle": "<string>",
"oldStatus": "todo",
"newStatus": "todo"
}
'curl --request POST \
--url http://localhost:3333/v1/internal/tasks/notify-status-change \
--header 'Content-Type: application/json' \
--data '
{
"organizationId": "<string>",
"taskId": "<string>",
"taskTitle": "<string>",
"oldStatus": "todo",
"newStatus": "todo"
}
'Internal service token (required in production)
Organization ID
Task ID
Task title
Previous task status
todo, in_progress, in_review, done, not_relevant, failed New task status
todo, in_progress, in_review, done, not_relevant, failed Notifications sent
Was this page helpful?