/v1/comments/:commentId/replies
POST {{baseUrl}}/v1/comments/:commentId/replies
This API is currently provided as a preview. Be aware of the following:
- There might be unannounced breaking changes.
- Any breaking changes to preview APIs won't produce a new API version.
- Public integrations that use preview APIs will not pass the review process, and can't be made available to all Canva users.
Creates a reply to a comment in a design.
To reply to an existing thread of comments, you can use either the id
of the parent
(original) comment, or the thread_id
of a comment in the thread. Each comment can
have a maximum of 100 replies created for it.
For information on comments and how they're used in the Canva UI, see the Canva Help Center.
Request Body
{"attached_to"=>{"design_id"=>"<string>", "type"=>"design"}, "message"=>"<string>"}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
Content-Type | string | ||
Accept | string |
RESPONSES
status: OK
{"comment":{"author":{"id":"\u003cstring\u003e","display_name":"\u003cstring\u003e"},"id":"\u003cstring\u003e","mentions":{"deseruntf2":{"user_id":"\u003cstring\u003e","team_id":"\u003cstring\u003e","display_name":"\u003cstring\u003e"}},"message":"\u003cstring\u003e","thread_id":"\u003cstring\u003e","type":"reply","attached_to":{"design_id":"\u003cstring\u003e","type":"design"},"created_at":"\u003clong\u003e","updated_at":"\u003clong\u003e"}}