— : In this post we will create a Account Record with help of DataRaptorPostAction From Integration Procedures
Step 1: Create an Integration Procedure.
- Begin by creating a new Integration Procedure to handle the data integration process.
Step 2: Add DataRaptorPostAction to the Structure.
- Drag and drop the DataRaptorPostAction component into the Structure Panel of your Integration Procedure.
Step 3: Configure DataRaptor Interface.
- In the DataRaptor Interface section of the DataRaptorPostAction, specify the name of the data load (post). Follow the instructions provided in the image below for guidance.
Step 4: Configure Additional Input/Output/Failure Response in DataRaptorPostAction.
-
In the DataRaptorPostAction configuration, navigate to the “ADDITIONAL INPUT/OUTPUT/FAILURE RESPONSE” section.
-
Set “Send Only Additional Input” to
true
if you want to send only additional input data.
Step 5: Field Mapping in DataRaptor for Load (Post).
-
Navigate to the DataRaptor interface for the load (post) you created.
-
Within the DataRaptor interface, look for a section related to “Field Mapping” or a similar term.
-
Map the fields from the source to the destination as needed for your data integration. This involves associating the fields in your data source with the corresponding fields in the target system.
Step 6: Add ResponseAction to Display Data in the Preview Tab.
- Drag and drop the ResponseAction component into the Structure Panel of your Integration Procedure.
- Configure the ResponseAction to include the node of the post DataRaptor data in %% signs to send all data in the response.
Step 7: Input Parameters and Execution on the Preview Tab.
- On the Preview Tab, locate the section for providing input parameters.
Example Input Parameters in JSON:
{
"FirstName": "Demo",
"PhoneNumber": "444444",
"Rating": "Hot",
"AccountNumber": "11222"
}
- Enter the necessary input parameters in JSON format. Adjust the keys and values based on your specific data.
-
Step 8: Execute the Integration.
- After entering the input parameters, click on the “Execute” button to trigger the integration process.