Article Overview
This article describes how to export an initiation payload from an EasySend process.
Exporting an Initiation Payload
(See Figure 1)
You can export an EasySend process payload and use it to initiate a process through an API. The payload mirrors the structure of the process's Model and data items and is exported as a JSON file. To export the initiation payload, follow these steps:
Figure 1: Export Initiation Payload
- Select a process and access the Webflow.
- Click More Options (1).
- Hover over Export Initiation Payload (2).
- Click an option (3):
- Current Version - the most currently deployed version.
- The last version that was deployed to a specific server, Dev or Prod.
- View your exported JSON file, for example:
{
"apiKey": "",
"customerId": "y-insurance",
"processId": "a5gTFqzXNgkYQlxdt6OR",
"serializedModel": {
"memberInformation": {
"firstName": "",
"middleName": "",
"lastName": "",
"birthDate": "",
"gender": "",
"ssn": "",
"driverLicenseNumber": "",
"isIndividualW9": false
},
"address": {
"physicalAddress": {
"city": "",
"zip": "",
"aptSuite": ""
},
"isSameMailing": false,
"mailingAddress": {
"street": "",
"city": "",
"zip": "",
"aptSuite": ""
}
},
"contactInformation": {
"email": "",
"phoneNumber": "",
"alternativePhoneNumber": "",
"contactInforStatment": false,
"areaCode": ""
},
"workInformation": {
"employer": "",
"dateOfHire": "",
"referenceNumber": "",
"annualSalary": ""
},
"dependentsQuestion": "",
"dependents": [
{
"firstName": "",
"middleName": "",
"lastName": "",
"birthDate": "",
"phoneNumber": "",
"relationship": "",
"ssn": "",
"isSameAddress": false,
"isBeneficiary": false,
"share": "",
"address": {
"street": "",
"city": "",
"zip": "",
"aptSuite": ""
},
"isDependent": false,
"gender": ""
}
],
"beneficiariesQuestion": "",
"beneficiaries": [
{
"firstName": "",
"middleName": "",
"lastName": "",
"birthDate": "",
"phoneNumber": "",
"relationship": "",
"isSameAddress": false,
"isBeneficiary": false,
"share": "",
"address": {
"street": "",
"city": "",
"zip": "",
"aptSuite": ""
}
}
],
"coverageSelection": {
"plans": "",
"gold": {
"shortTermDisability0_2": "",
"shortTermDisability2_5": "",
"shortTermDisability5_plus": "",
"selectContainer": ""
},
"silver": {
"shortTermDisability0_2": "",
"shortTermDisability2_5": "",
"shortTermDisability5_plus": "",
"selectContainer": ""
},
"platinum": {
"shortTermDisability0_2": "",
"shortTermDisability2_5": "",
"shortTermDisability5_plus": "",
"selectContainer": ""
},
"agentHelp": "",
"isMember": false,
"mustChooseOneValid": "",
"onlyOneValid": ""
},
"agnetName": "",
"uploads": {
"fileNameDriver": "",
"fileNameFront": "",
"fileNameBack": ""
},
"isApproveOne": false,
"signatureContainer": {},
"agentContainer": {},
"test": "",
"integration": {},
"atLeastOneDependentOrBeneficiary": "",
"enrollment0_2": "",
"enrollment2_5": "",
"enrollment5Plus": "",
"statementContainer": "",
"testing": "",
"isAgent": false,
"todayDateSFTP": "",
"sfid": "",
"triggerPhone": "",
"triggerEmail": "",
"shortVersion": false,
"dontDisplay": "",
"existingCustomer": "",
"ifExistingCustomer": {
"policyNumber": "",
"ssn": "",
"searchTrueFlag": false,
"ifSearchTrue": {
"thisIsYou": ""
}
},
"ifNotExistingCustomer": ""
}
}