List comment replies
/products/{product_id}/comments/{comment_id}/repliesLists the replies to a top-level comment in chronological order.
Autonomous mode: the API credential secret, sent as a bearer token. Credential secrets are identified by a fixed prefix.
In: header
Path Parameters
Public ID of the product, prefixed with prd_.
Public ID of the comment, prefixed with cmt_.
Header Parameters
Optional client-generated identifier of the request, up to 64 characters from [A-Za-z0-9._-]. Echoed back in the response and recorded in the request log; it never replaces the server-generated X-Request-Id.
length <= 64Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/products/string/comments/string/replies"{ "data": [ { "author": { "id": "string", "kind": "user" }, "created_at": "2019-08-24T14:15:22Z", "id": "string", "object": "comment_reply", "revision": "string", "status": "pending", "text": "string" } ], "page": { "limit": 1, "next_cursor": "string", "prev_cursor": "string" }}Delete a comment DELETE
Deletes a top-level comment together with all of its replies. To remove a single reply while keeping the rest of the conversation, use the delete reply operation.
Create a comment reply POST
Adds a reply to a top-level comment. Replies created through the API are attributed to the credential that made the request (`author.kind` is `credential`).