Page tree
Skip to end of metadata
Go to start of metadata

Description

Updates all or specific records for a key in a related data set. Dataset has to be created in "Attributes > Related Data". Please make sure the dataset has at least one column.

Example request

<soapenv:Envelope 
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:ecm="http://ecircle.com/developer/ecmapi">
   <soapenv:Header/>
   <soapenv:Body>
      <ecm:relatedDataUpdateRecords>
         <recordAndFilter>
            <datasetName>myproducts</datasetName>
            <key>1</key>
            <!--Zero or more repetitions:-->
            <data>
               <name>id</name>
               <value>1</value>
            </data>
            <data>
               <name>product</name>
               <value>suitcase</value>
            </data>        
            <!--Zero or more repetitions:-->
            <filter>
               <name>id</name>
               <value>1</value>
            </filter>
         </recordAndFilter>
      </ecm:relatedDataUpdateRecords>
   </soapenv:Body>
</soapenv:Envelope>

  • No labels