GetBatch
Gets information about a Salesforce batch.
Input
Name | Type | Description |
JobId | String | Id of the job the batch is associated with. |
BatchId | String | Id of the batch being retrieved. |
Result Set Columns
Name | Type | Description |
ID | String | The Id of the batch. |
JobID | String | The Id of the job. |
ApexProcessingTime | String | The number of milliseconds taken to process triggers and other processes related to the batch data. If there are no triggers, the value is 0. This does not include the time used for processing asynchronous and batch Apex operations. See also ApiActiveProcessingTime and TotalProcessingTime. This field is available in API version 19.0 and later. |
ApiActiveProcessingTime | String | The number of milliseconds taken to actively process the batch. This value includes ApexProcessingTime but not the time the batch waited in the queue to be processed or the time required for serialization and deserialization. See also TotalProcessingTime. This field is available in API version 19.0 and later. |
CreatedDate | String | The date and time in the UTC time zone when the batch was created. This is not the time processing began, but the time the batch was added to the job. |
NumberRecordsFailed | String | The unique, 18-character Id for the job associated with this batch. |
NumberRecordsProcessed | String | The number of records processed in this batch at the time the request was sent. This number increases as more batches are processed. |
State | String | The current state of processing for the batch. For instance, Queued, InProgress, Completed, Failed, or Not Processed. |
StateMessage | String | Contains details about the state. For example, if the state value is Failed, this field contains the reasons for failure. If there are multiple failures, the message may be truncated. If so, fix the known errors and resubmit the batch. Even if the batch failed, some records could have been completed successfully. |
SystemModstamp | String | The date and time in the UTC time zone that processing ended. This is only valid when the state is Completed. |
TotalProcessingTime | String | The number of milliseconds taken to process the batch. This excludes the time the batch waited in the queue to be processed. See also ApexProcessingTime and ApiActiveProcessingTime. This field is available in API version 19.0 and later. |