sf_retrieve | R Documentation |
Retrieves one or more new records to your organization’s data.
sf_retrieve( ids, fields, object_name, api_type = c("REST", "SOAP", "Bulk 1.0", "Bulk 2.0"), guess_types = TRUE, control = list(...), ..., verbose = FALSE )
ids |
|
fields |
|
object_name |
|
api_type |
|
guess_types |
|
control |
|
... |
arguments passed to |
verbose |
|
tibble
## Not run: n <- 3 new_contacts <- tibble(FirstName = rep("Test", n), LastName = paste0("Contact", 1:n)) new_contacts_result <- sf_create(new_contacts, object_name="Contact") retrieved_records <- sf_retrieve(ids=new_contacts_result$id, fields=c("LastName"), object_name="Contact") ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.