provider Component Sets GET
/v1/teams/{team_id}/component_sets @utdk/figma
/v1/teams/{team_id}/component_sets Get team component sets
Get a paginated list of published component sets within a team library.
- team_id path required
- Id of the team to list component sets from.
- string
- page_size query
- Number of items to return in a paged list of results. Defaults to 30.
- number
- after query
- Cursor indicating which id after which to start retrieving component sets for. Exclusive with before. The cursor value is an internally tracked integer that doesn't correspond to any Ids.
- number
- before query
- Cursor indicating which id before which to start retrieving component sets for. Exclusive with after. The cursor value is an internally tracked integer that doesn't correspond to any Ids.
- number
Try it
Authentication
Configure credentials for Figma API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import figma from '@utdk/figma';
await figma.getteamcomponentsets({
"page_size": 30
})