fulcrumapp/fulcrum-js

Support form history API

Closed this issue · 1 comments

Support form history API

Available in fulcrum-app@2.5.0

Get all of a form's history:

const formHistory = await client.forms.history('abc-123');

Get a single history entry, version 13 in this example:

const formHistory = await client.forms.history('abc-123', 13);