Get interactions for a list of PZN batches
Usage
api_interaction_pzn_batch(creds, pzn_batches)
Arguments
- creds
A list containing the access token and host
- pzn_batches
A list of lists containing PZNs, id and a details boolean
Value
A list of data frames with the interactions
Examples
if (FALSE) { # \dontrun{
creds <- api_login("https://api.example.com", "username", "password", "user")
api_interaction_pzn_batch(creds, list(list(pzns = c("PZN1", "PZN2"), id = 1, details = TRUE)))
} # }