attachment_list | R Documentation |
List all attachments for a list of submission instances.
attachment_list(
iid,
pid = get_default_pid(),
fid = get_default_fid(),
url = get_default_url(),
un = get_default_un(),
pw = get_default_pw(),
retries = get_retries()
)
iid |
A list of submission instance IDs, e.g. from
|
pid |
The numeric ID of the project, e.g.: 2. Default: Set default See |
fid |
The alphanumeric form ID, e.g. "build_Spotlighting-0-8_1559885147". Default: Set default See |
url |
The ODK Central base URL without trailing slash. Default: Set default See |
un |
The ODK Central username (an email address).
Default: |
pw |
The ODK Central password.
Default: |
retries |
The number of attempts to retrieve a web resource. This parameter is given to Default: 3. |
A tibble containing some high-level details of the submission attachments. One row per submission attachment, columns are submission attributes:
* name: The attachment filename, e.g. 12345.jpg * exists: Whether the attachment for that submission exists on the server.
https://docs.getodk.org/central-api-submission-management/#listing-expected-submission-attachments
https://docs.getodk.org/central-api-form-management/#listing-form-attachments
Other submission-management:
encryption_key_list()
,
submission_audit_get()
,
submission_detail()
,
submission_export()
,
submission_get()
,
submission_list()
## Not run:
# Step 1: Setup ruODK with OData Service URL (has url, pid, fid)
ruODK::ru_setup(svc = "...")
# Step 2: List all submissions of form
sl <- submission_list()
# Step 3a: Get attachment list for first submission
al <- get_one_submission_att_list(sl$instance_id[[1]])
# Ste 3b: Get all attachments for all submissions
all <- attachment_list(sl$instance_id)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.