Support form history API
Closed this issue · 1 comments
bmcbride commented
Support form history API
JasonSanford commented
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);