...
Action | URI | Method | Request Body | Response Body | Authorization |
---|---|---|---|---|---|
Bulk Update | /updateEntitiesentity/bulk/update/async/start | POST | List<Entity> | AsyncJobId | ACCESS_TYPE.UPDATE on each entity in the passed entityList |
Get Update Results | /entity/bulk/updateEntitiesupdate/async/get/{asyncToken} | GET | List<BulkActionResult> | Asynchronously get the results of an updateEntities request started with POST /updateEntities/async/start Note: When the result is not ready yet, this method will return a status code of 202 (ACCEPTED) and the response body will be a AsynchronousJobStatus object. | |
Bulk Delete | /entity/bulk/deleteEntitiesdelete/async/start | POST | entityIdList | AsyncJobId | ACCESS_TYPE.DELETE on each entity in the passed entityList |
Get Delete Results | /entity/bulk/deleteEntitiesdelete/async/get/{asyncToken} | GET | List<BulkActionResult> | Asynchronously get the results of a deleteEntities request started with POST /deleteEntities/async/start Note: When the result is not ready yet, this method will return a status code of 202 (ACCEPTED) and the response body will be a AsynchronousJobStatus object. |
...