Status Change (To > From) Labeling
Is there a way to add some more information in the notifications of status change so that it not only notifies/records what a task or project's status was change TO, but also FROM what status it was changed?
It looks like we don't have the translated page you're looking for, but we do have other content in English and offer support in English.
What can we help you with?
Learn. Share. Discuss.
Is there a way to add some more information in the notifications of status change so that it not only notifies/records what a task or project's status was change TO, but also FROM what status it was changed?
Folllowing List for Post: Status Change (To > From) Labeling
[this list is visible for admins and agents only]
Hi Andrew! Thanks so much for posting your question to the API Community and sorry for the delay in getting back to you!
The best solution would be to use webhooks. Webhooks allow you to subscribe to notifications about changes in your Wrike account or specific Folder/Project. Once subscribed, you'll be receiving JSON payloads with old and new values for the chosen event. Here's a sample of the "TaskStatusChanged" record:
{
"oldStatus": "Active",
"status": "Completed",
"taskId": "IEAADQQLKQAKOFAB",
"webhookId": "IEAADQQLJAAAAULN",
"eventAuthorId": "KUAALDRX",
"eventType": "TaskStatusChanged",
"lastUpdatedDate": "2016-11-22T11:09:58Z"
}
Please let me know if this is something you were looking for.