reply_to_comment
Reply to a specific comment in a Figma file by providing the file key, comment ID, and reply message, enabling collaboration and feedback directly within the design workflow.
Instructions
Reply to an existing comment in a Figma file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment_id | Yes | The ID of the comment to reply to. Comment ids have the format `<number>` | |
file_key | Yes | The key of the Figma file | |
message | Yes | The reply message |
Input Schema (JSON Schema)
{
"properties": {
"comment_id": {
"description": "The ID of the comment to reply to. Comment ids have the format `<number>`",
"type": "string"
},
"file_key": {
"description": "The key of the Figma file",
"type": "string"
},
"message": {
"description": "The reply message",
"type": "string"
}
},
"required": [
"file_key",
"comment_id",
"message"
],
"type": "object"
}