Update a single FormSubmissionApproval assigned to the current user.
const formSubmissionApproval = { id: 'd27966cc-128d-48a2-b681-6ad52012e113', status: 'APPROVED', username: 'email@example.com', formApprovalFlowInstanceId: 1, notificationEmailAddress: 'email@example.com', notes: 'Great work!!!', internalNotes: 'It was not really that great...', cannedResponseKey: 'my_canned_response_key', createdAt: '2021-02-21T22:57:56.257Z', updatedAt: '2021-02-21T22:57:56.257Z',}const updatedFormSubmissionApproval = await approvalsService.updateFormSubmissionApproval( formSubmissionApproval, ) Copy
const formSubmissionApproval = { id: 'd27966cc-128d-48a2-b681-6ad52012e113', status: 'APPROVED', username: 'email@example.com', formApprovalFlowInstanceId: 1, notificationEmailAddress: 'email@example.com', notes: 'Great work!!!', internalNotes: 'It was not really that great...', cannedResponseKey: 'my_canned_response_key', createdAt: '2021-02-21T22:57:56.257Z', updatedAt: '2021-02-21T22:57:56.257Z',}const updatedFormSubmissionApproval = await approvalsService.updateFormSubmissionApproval( formSubmissionApproval, )
Optional
Update a single FormSubmissionApproval assigned to the current user.
Example