I'd like to create a project-level note that tags a user via the Workfront API. I can create the note:
https://[SUBDOMAIN].attask-ondemand.com/attask/api/v5.0/note?noteText=[MESSAGE_TEXT]¬eObjCode=PROJ&objID=[PROJECT_ID]&sessionID=[SESSION_ID]&method=POST
But I'm struggling to figure out the syntax to tag a user. I've tried the following:
https://[SUBDOMAIN].attask-ondemand.com/attask/api/v5.0/note?noteText=[MESSAGE_TEXT]¬eObjCode=PROJ&objID=[PROJECT_ID]&tags:objID=[USER_ID]&tags:objObjCode=USER&sessionID=[SESSION_ID]&method=POST
But I get a
APIModel V5_0 does not support field tags:objID (Note)
message returned.
I think that it's some combination of the "ntag" or "tags" object I need to add, but not sure what I'm missing.