provider Activity Logs GET /v1/activity_logs
@utdk/figma /v1/activity_logs
Get activity logs
Returns a list of activity log events
events query
Event type(s) to include in the response. Can have multiple values separated by comma. All events are returned by default.
string
start_time query
Unix timestamp of the least recent event to include. This param defaults to one year ago if unspecified.
number
end_time query
Unix timestamp of the most recent event to include. This param defaults to the current timestamp if unspecified.
number
limit query
Maximum number of events to return. This param defaults to 1000 if unspecified.
number
order query
Event order by timestamp. This param can be either "asc" (default) or "desc".
enum: asc, desc

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.

getactivitylogs
GET/v1/activity_logs
Returns a list of activity log events

Event type(s) to include in the response. Can have multiple values separated by comma. All events are returned by default.

Unix timestamp of the least recent event to include. This param defaults to one year ago if unspecified.

Unix timestamp of the most recent event to include. This param defaults to the current timestamp if unspecified.

Maximum number of events to return. This param defaults to 1000 if unspecified.

Event order by timestamp. This param can be either "asc" (default) or "desc".

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import figma from '@utdk/figma';

await figma.getactivitylogs({
  "order": "asc"
})