
Figma Delete
CertifiedDelete a comment on a Figma file
Figma Delete
Delete a comment on a Figma file
Calls the Figma DELETE /v1/files/: key/comments/: comment_id endpoint.
type: io.kestra.plugin.figma.comments.DeleteExamples
Delete a comment on a Figma file
id: figma_delete_comment
namespace: company.team
tasks:
- id: delete_comment
type: io.kestra.plugin.figma.comments.Delete
accessToken: "{{ secret('FIGMA_ACCESS_TOKEN') }}"
fileKey: "abc123XYZ"
commentId: "1234567890"
Properties
accessToken *Requiredstring
Figma access token
A personal access token generated from your Figma account settings (Account Settings > Personal access tokens), scoped to what the task needs to do. A valid OAuth 2.0 access token obtained through your own authorization flow also works — this plugin does not implement the OAuth flow itself, only PAT-style bearer tokens passed as-is.
commentId *Requiredstring
The ID of the comment to delete
fileKey *Requiredstring
The Figma file key
Found in the file's URL: https://www.figma.com/file/: fileKey/....
baseUrl string
https://api.figma.com/v1Figma API base URL
Defaults to the public Figma REST API. Override only to point at a self-hosted proxy or a test server.