Users
TheSyncd SDK offers the most flexibility for integrating with the Figma API directly in your codebase.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Syncd SDK offers the most flexibility for integrating with the Figma API directly in your codebase.
await syncdClient.users.webhooks.retrieveAll({
projectId,
});
await syncdClient.users.webhooks.retrieve({
where: {
provider: "FIGMA", // This is fully typed
// or just
id: "webhookId", // this you get when you first create a webhook
},
});
await syncdClient.providers.figma.webhooks.update({
...
})
