Versions Compared

Key

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

...

The new classes are:

Request

BulkRequest.uxf

Image RemovedImage Added
Response

BulkResponse.uxf

Image Removed

The result enum would include values such as success, transient failure, lack of permission failure, etc.

Image Added

Web Services

ActionURIMethodRequest BodyResponse BodyAuthorization
Bulk Update/entity/bulk/update/async/startPOSTList<Entity>BulkUpdateRequestAsyncJobIdACCESS_TYPE.UPDATE on each entity in the passed entityList
Get Update Results/entity/bulk/update/async/get/{asyncToken}GET List<BulkActionResult>BulkUpdateResponse

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/delete/async/startPOSTentityIdListBulkDeleteRequestAsyncJobId ACCESS_TYPE.DELETE on each entity in the passed entityList
Get Delete Results/entity/bulk/delete/async/get/{asyncToken}GET List<BulkActionResult>BulkDeleteResponse

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.

...