Getting Started
Introducing the Adobe CX Commenting API
The Adobe Customer Experience (CX) Commenting API v1 lets integrators programmatically manage comments, replies, and reactions associated with supported objects across CX platforms. Use it when you need a stable HTTP resource model for server-to-server integrations.
Before you begin
- Authentication — Set up Adobe IMS OAuth 2.0 credentials in Adobe Developer Console and learn required request headers.
- Error handling — Understand HTTP status codes and error response shapes.
- Limits — Review pagination caps, content size limits, and the author edit window.
- API Reference — Explore all endpoints interactively.
Base URL
External customer requests go through the Adobe I/O API Gateway once the service is onboarded (same pattern as other Workfront public APIs).
https://domain.my.workfront.com/comments/api/v1
Quick example — create a comment
curl -X POST "https://domain.my.workfront.com/comments/api/v1/comment" \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "x-api-key: $API_KEY" \
-H "x-gw-ims-org-id: $IMS_ORG_ID" \
-H "wf-customerid: $WF_CUSTOMER_ID" \
-H "Content-Type: application/json" \
-d '{
"objectID": "6400cae3000c141416060e29",
"objectCode": "PROJ",
"content": "Kickoff notes are ready for review.",
"contentHTML": "<p>Kickoff notes are ready for review.</p>",
"isPrivate": false
}'
A successful response (200 OK) returns a comment object including _id, objectID, objectCode, content, contentHTML, and audit fields.
Next steps
Head to the API Reference for the full endpoint catalog, or read the Authentication guide for token and header details.