sf_describe_objects {salesforcer} | R Documentation |
SObject Basic Information
Description
Describes the individual metadata for the specified object.
Usage
sf_describe_objects(
object_names,
api_type = c("SOAP", "REST"),
control = list(...),
...,
verbose = FALSE
)
Arguments
object_names |
|
api_type |
|
control |
|
... |
arguments passed to |
verbose |
|
Value
list
See Also
REST API Documentation, REST API Example
Examples
## Not run:
account_metadata <- sf_describe_objects("Account")
account_metadata_SOAP <- sf_describe_objects("Account", api_type="SOAP")
multiple_objs_metadata <- sf_describe_objects(c("Contact", "Lead"))
account_metadata_REST <- sf_describe_objects("Account", api_type="REST")
## End(Not run)