Skip to main content

I’d like to inquire with the community about creating comments using the Figma Plugin API. Is there a method for accomplishing it using code?. Something maybe like:


const comment = figma.createComment();
comment.text = chatGPTResponse;
selectedLayer.appendChild(comment);

No, you can’t create comments with the Plugins API. Only REST API.


Reply