Figma Delete

Figma Delete

Certified

Delete a comment on a Figma file

Calls the Figma DELETE /v1/files/: key/comments/: comment_id endpoint.

yaml
type: io.kestra.plugin.figma.comments.Delete

Delete a comment on a Figma file

yaml
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

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.

The ID of the comment to delete

The Figma file key

Found in the file's URL: https://www.figma.com/file/: fileKey/....

Defaulthttps://api.figma.com/v1

Figma API base URL

Defaults to the public Figma REST API. Override only to point at a self-hosted proxy or a test server.