sf_upload_complete_bulk {salesforcer} | R Documentation |
Signal Upload Complete to Bulk API Job
Description
This function signals that uploads are complete to a Job in the Salesforce Bulk API
Usage
sf_upload_complete_bulk(job_id, api_type = c("Bulk 2.0"), verbose = FALSE)
Arguments
job_id |
|
api_type |
|
verbose |
|
Value
A list
of parameters defining the job after signaling a completed upload
Note
This function is typically not used directly. It is used in sf_create_batches_bulk()
right after submitting the batches to signal to Salesforce that the batches should
no longer be queued.
References
https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch
Examples
## Not run:
upload_info <- sf_upload_complete_bulk(job_id=job_info$id)
## End(Not run)