reply_to_comment
Respond to specific comments in Figma files by providing a file key, comment ID, and reply message. Facilitates collaboration and feedback tracking within Figma designs.
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"
}