function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
azu.shaik1.3965080575576013E12azu.shaik1.3965080575576013E12 

i need sample code for the following json structure to create master record along child record in apexrest api in salesforce

i need sample code for the following json structure to create master record along child record in apexrest api in salesforce

i have master detail relation ship between product and attributes objects

{
  "mastername": "name",
   "masterdescription" : " decription",
    "attributes":[{
                                 "attributename": "name",
                                  "attributevalue": "value"
                             },
                           {
                                 "attributename": "name",
                                  "attributevalue": "value"
                             },
                              {
                                 "attributename": "name",
                                  "attributevalue": "value"
                             },
             ..........................
           }]

}



Please help me i need create maste record along with multiple child records
Nilesh Jagtap (NJ)Nilesh Jagtap (NJ)
Hi,
I am not sure if this is possible, as we must have a parent id to insert child records.
Any thoughts?

For inserting single object via rest api using java you can refer http://wordgraphs.com/post/854/Creating-objects-in-Salesforce-using-REST-API-from-Java

Thanks,
N.J