Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2017-07-21 05:47 AM
Hello!
I need to update multiple records through web services.
According to guide, in UpdateRecords method I need to provide XML of multiple <Record> nodes.
But how to define which records should be updated? Where I suppose to set contentId of records?
In UpdateRecord there is a contentId parameter, but nothing stated for UpdateRecords method.
Thanks and best regards,
Sergei
2017-07-21 10:52 AM
For the Record element, add the id attribute with the Content Id. Here is an example XML string for the UpdateRecords method.
<Records>
<Record id="301264">
<Field id="13867" name="Name" value="name updated 1" />
</Record>
<Record id="301265">
<Field id="13867" name="Name" value="name updated 2" />
</Record>
</Records>
If you are creating the SOAP message and get an error, check out https://community.rsa.com/docs/DOC-46874?sr=search&searchId=9af7478e-733d-4555-a873-5a526ce5da28&searchIndex=1
2017-07-21 10:52 AM
For the Record element, add the id attribute with the Content Id. Here is an example XML string for the UpdateRecords method.
<Records>
<Record id="301264">
<Field id="13867" name="Name" value="name updated 1" />
</Record>
<Record id="301265">
<Field id="13867" name="Name" value="name updated 2" />
</Record>
</Records>
If you are creating the SOAP message and get an error, check out https://community.rsa.com/docs/DOC-46874?sr=search&searchId=9af7478e-733d-4555-a873-5a526ce5da28&searchIndex=1