Add task comments via Rest API | Community
Skip to main content
November 24, 2023
Solved

Add task comments via Rest API

  • November 24, 2023
  • 1 reply
  • 1503 views

Hi All,

I am currently working on POC by integrating the Adobe campaign classic with Workfront. In that, I want to post comments into the Workfront task from the Adobe campaign classic via REST API. I explored all the REST API endpoints in this link https://developer.workfront.com/ , but could not find the POST method that I was expecting. Could any one of please respond to me and provide a thoughtful answer/solution?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by lgaertner

Hello ignatius,

 

Do you want to post an update into the task?

 

Then you can use the endpoint NOTE using a POST request with a body like this:

 

{ "tags": [ { "objID": "<userId>", "objObjCode": "USER" } ], "objID": "<taskId>", "subject": "Task update", "noteText": "Task was updated", "isMessage": true, "noteObjCode": "TASK", "json": "{}"

 

 

Regards.

Lars

1 reply

lgaertner
lgaertnerAccepted solution
November 24, 2023

Hello ignatius,

 

Do you want to post an update into the task?

 

Then you can use the endpoint NOTE using a POST request with a body like this:

 

{ "tags": [ { "objID": "<userId>", "objObjCode": "USER" } ], "objID": "<taskId>", "subject": "Task update", "noteText": "Task was updated", "isMessage": true, "noteObjCode": "TASK", "json": "{}"

 

 

Regards.

Lars

November 29, 2023

Hi Lars,

 

Thank you so much. 

It works for me