Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

METHODDESCRIPTION
addLookupTableData

Create a lookup table, including the column structure. Once set, the column structure can't be changed. This method should only be called once for each lookup table.

appendLookupTableData2

Add records to an existing lookup table. Set the COMPLETE parameter to 1 on the last batch of records to append. The changes will not be sent to the app until a COMPLETE = 1.

deleteLookupTableData

Clear the data from an existing lookup table. If not all records could be deleted in a single request, the hasMoreRecords node will contain "true". Continue calling deleteLookupTableData until hasMoreRecords = "false".

updateLookupTableData

A convenience method that deletes records from the lookup table and then appends records. This this method may return an error if not all records could be cleared in a single request. In this case use deleteLookupTableData and appendLookupTableData2 individually.

...