Get saved data.
const formId = 1const myKey = 'my-key'const prefillData = await autoSaveService.getAutoSaveData(formId, myKey)if (prefillData) { // Ask user if they would like to continue with this prefill data.} Copy
const formId = 1const myKey = 'my-key'const prefillData = await autoSaveService.getAutoSaveData(formId, myKey)if (prefillData) { // Ask user if they would like to continue with this prefill data.}
Get saved data.
Example