View source: R/bulk-operation.R
sf_get_all_jobs_bulk | R Documentation |
This function retrieves details about all Bulk jobs in the org.
sf_get_all_jobs_bulk( parameterized_search_list = list(isPkChunkingEnabled = NULL, jobType = NULL), next_records_url = NULL, api_type = c("Bulk 2.0"), verbose = FALSE )
parameterized_search_list |
list; a list of parameters to be added as part of the URL query string (i.e. after a question mark ("?") so that the result only returns information about jobs that meet that specific criteria. For more information, read the note below and/or the Salesforce documentation here. |
next_records_url |
character (leave as NULL); a string used internally by the function to paginate through to more records until complete |
api_type |
|
verbose |
|
A tbl_df
of parameters defining the details of all bulk jobs
parameterized_search_list elements that can be set to filter the results:
isPkChunkingEnabledA logical either TRUE or FALSE. TRUE only returns information about jobs where PK Chunking has been enabled.
jobTypeA character string to return jobs matching the specified type. Must be one of: "BigObjectIngest", "Classic", "V2QIngest". Classic corresponds to Bulk 1.0 API jobs and V2Ingest corresponds to the Bulk 2.0 API jobs.
https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/get_all_jobs.htm
## Not run: job_info <- sf_create_job_bulk('insert', 'Account') all_jobs_info <- sf_get_all_jobs_bulk() # just the Bulk API 1.0 jobs all_jobs_info <- sf_get_all_jobs_bulk(parameterized_search_list=list(jobType='Classic')) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.