How To Insert Bulk Records in a Single Object within DataRaptor(Salesforce/Vlocity / OmniStudio)

:– In this post we create Bulk record use of dataraptor

First, create a DataRaptor for Loading.  Select Sobject, map the Fields and Execute .

Create DataReptor and fill the Name & Interface Type
Create DataReptor and fill the Name & Interface Type
Select Sobject which object to load
Select Sobject which object to load
We Map to Input & Domain JSON Path
Map Input & Domain Fields

Note-While doing Sobject mapping it is necessary to map the required fields.

Going To Preview Tab and Write to Input in list  Insert JSON.

				
					{
    "Account": [
        {
            "Name": "Abhishek",
            "Phone": "9876534561"
        },
        {
            "Name": "Abhishek2",
            "Phone": "9876534562"
        },
        {
            "Name": "Abhishek3",
            "Phone": "9876534563"
        }
    ]
}
				
			

Write Inputs  Field & fill value and excute.

Crate Single Object Mulltipal Records
Crate Single Object Mulltipal Records
Scroll to Top