A batch of objects can be updated by issuing a PUT request to the appropriate application and table:
• Object IDs: Every object in the batch must be assigned an ID. If the _ID field value is missing within a doc group, that update is skipped.
• Nullifying SV scalars: An object’s SV scalar field can be set to null by giving it an empty value. Example:In JSON, the keyword NULL or an empty string (“”) can be assigned to nullify an SV scalar.
• Removing MV field values: MV scalar and link values can be removed with a remove group. Example:<remove><remove>If the PUT request is successful, a 200 OK response is returned with a batch-result group. It contains a doc element for each object updated, including _ID, status, and other elements as needed.