Learn R Programming

BMRSr (version 1.0.0)

build_call: Build an API call (uses the appropriate function based on the data item)

Description

Build an API call (uses the appropriate function based on the data item)

Usage

build_call(data_item, api_key, service_type = "csv",
  api_version = "v1", ...)

Arguments

data_item

character string; data item to be retrieved

api_key

character string; user's API key

service_type

character string; one of "csv" or "xml" to define return format

api_version

character string; API version to use - currently only on version 1

...

values to be passed to appropriate build_x_call function

See Also

build_b_call

build_remit_call

build_legacy_call

Other call-building functions: build_b_call, build_legacy_call, build_remit_call

Examples

Run this code
# NOT RUN {
build_call(data_item = "TEMP", api_key = "12345", from_date = "12 Jun 2018",
to_date = "13 Jun 2018", service_type = "csv")
build_call(data_item = "QAS", api_key = "12345",
settlement_date = "01 Jun 2019", service_type = "xml")
# }

Run the code above in your browser using DataLab