Submits a bulk job request for a bulk operation on the specified custom object records. A succcessful call returns a newly created bulk job. The job ID can be used to poll the job status or upload the CSV file if it is a create
or update
job.
This custom object bulk jobs have the following limits:
accepted
, pending
, or in_progress
status are counted towards the concurrent bulk job limit.delete
bulk job. Only the users that have the "Edit Custom Objects" permission can create a create
or update
bulk job. See Platform Permissions for more information.Accept-Encoding | string Include the If specified, Zuora automatically compresses responses that contain over 1000 bytes of data, and the response contains a |
Content-Encoding | string Include the |
Zuora-Track-Id | string <= 64 characters A custom identifier for tracing the API call. If you set a value for this header, Zuora returns the same value in the response headers. This header enables you to associate your system process identifiers with Zuora API calls, to assist with troubleshooting in the event of an issue. The value of this field must use the US-ASCII character set and must not include any of the following characters: colon ( |
Zuora-Entity-Ids | string An entity ID. If you have Zuora Multi-entity enabled and the OAuth token is valid for more than one entity, you must use this header to specify which entity to perform the operation in. If the OAuth token is only valid for a single entity, or you do not have Zuora Multi-entity enabled, you should not set this header. |
Zuora-Org-Ids | string Comma separated IDs. If you have Zuora Multi-Org enabled, you can use this header to specify which orgs to perform the operation in. If you do not have Zuora Multi-Org enabled, you should not set this header. The IDs must be a sub-set of the user's accessible orgs. If you specify an org that the user does not have access to, the operation fails. If the header is not set, the operation is performed in scope of the user's accessible orgs. |
Authorization required | string The value is in the |
Zuora-Version | string <date> API version that determines the response schema. The default version is used if this parameter is not included. Specify |
Custom Objects bulk job request
object (CustomObjectBulkDeleteFilter) Filters to determine which records to be deleted in the bulk delete operation. | |
namespace required | string The namespace of the object. Custom objects belong to the
|
object required | string The object that the bulk operation performs on. |
operation required | string The operation that the bulk job performs. Only the users that have the "Delete Custom Objects" permission can submit a |
OK
Invalid input
Unauthorized
{- "filter": {
- "conditions": [
- {
- "field": "CreatedDate",
- "operator": "LT",
- "value": "2020-01-01T00:00:00.000Z"
}
]
}, - "namespace": "default",
- "object": "passenger",
- "operation": "delete"
}
{- "CreatedById": "7b39d73f-22e6-404a-b8e7-894f7620e91c",
- "CreatedDate": "2021-03-15T06:47:18Z",
- "Id": "ed4b9701-bafb-4976-8019-b08269430153",
- "UpdatedById": "7b39d73f-22e6-404a-b8e7-894f7620e91c",
- "UpdatedDate": "2021-03-15T06:47:18Z",
- "error": {
- "code": 71012560,
- "message": "Service limit reached, please retry later."
}, - "namespace": "default",
- "object": "passenger",
- "operation": "delete",
- "processingTime": 1882,
- "recordsProcessed": 500,
- "status": "failed"
}