Appsheet request builder
ash_request(
tableName,
Action = "Find",
Properties = ash_properties(),
Rows = list(),
appId = Sys.getenv("APPSHEET_APP_ID"),
access_key = Sys.getenv("APPSHEET_APP_ACCESS_KEY")
)
The name of the table to perform actions on.
The action to be performed on the table, one of ("Find", "Add", "Delete", "Edit"). Default is "Find", which reads a table.
A list of properties for the action. ash_properties()
provides sensible defaults, but can be customized.
A list of rows for the action. Default is an empty list.
The AppSheet application ID. Default is retrieved from the APPSHEET_APP_ID environment variable.
The AppSheet application access key. Default is retrieved from the APPSHEET_APP_ACCESS_KEY environment variable.
An httr2 request