Journey Manager (JM) The transaction engine for the platform. | Platform Developer | 18.11 This feature was updated in 18.11.
Manager allows you to prefill a form by passing an XMLXML (Extensible Markup Language) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. prefill document with form details. A form should have XML input mappings configured, so you can use this functionality in several ways:
SubmissionTaskService.createAnonymousSavedForm
and SubmissionTaskService.createFormTask
, when the inputXmlData
parameter is used to pass in the input XML object.As an example, the XML prefill form passes all the details for the first page of the Credit Card Application form. This is handled by the form version prefill service which assembles the prefill details as an XML document.
If you don't map properties, they won't be in a XML document that Manager sends to a form for the properties prefill.
To configure a form input XML prefill mapping:
It is also possible to use the prefill data service without mapping your fields. In this case, the exact same XML structure as the form XML must be returned from the prefill data service.
Next, learn about form data extract mapping.