sf_delete_job_bulk {salesforcer}R Documentation

Delete Bulk API Job

Description

Delete Bulk API Job

Usage

sf_delete_job_bulk(job_id, api_type = c("Bulk 2.0"), verbose = FALSE)

Arguments

job_id

character; the Salesforce Id assigned to a submitted job as returned by sf_create_job_bulk. It will start with "750".

api_type

character; one of "REST", "SOAP", "Bulk 1.0", or "Bulk 2.0" indicating which API to use when making the request.

verbose

logical; an indicator of whether to print additional detail for each API call, which is useful for debugging. More specifically, when set to TRUE the URL, header, and body will be printed for each request, along with additional diagnostic information where available.

Examples

## Not run: 
job_info <- sf_create_job_bulk('insert', 'Account')
sf_abort_job_bulk(job_info$id)
sf_delete_job_bulk(job_info$id)

## End(Not run)

[Package salesforcer version 1.0.1 Index]