
Figma ListProjectFiles
CertifiedList the files of a Figma project
Figma ListProjectFiles
List the files of a Figma project
Calls the Figma GET /v1/projects/: project_id/files endpoint.
type: io.kestra.plugin.figma.projects.ListProjectFilesExamples
List all files of a Figma project
id: figma_list_project_files
namespace: company.team
tasks:
- id: list_project_files
type: io.kestra.plugin.figma.projects.ListProjectFiles
accessToken: "{{ secret('FIGMA_ACCESS_TOKEN') }}"
projectId: "987654321"
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.
projectId *Requiredstring
The Figma project ID
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.
branchData booleanstring
Whether to include branch metadata in the response
This plugin passes branchData through as-is; it does not resolve or diff branches.
fetchType string
FETCHSTOREFETCHFETCH_ONENONEHow to handle the fetched files
Outputs
row object
The single fetched item
Populated when fetchType is FETCH_ONE.
rows array
The list of fetched items
Populated when fetchType is FETCH.
size integer
The number of items stored or fetched
total integer
The total number of items returned by the Figma API for this request
Only populated for list-shaped responses (e.g. comments, projects, files).
uri string
uriThe internal storage URI of the stored payload
Populated when fetchType is STORE.