Queries the Google Cloud Services (GCS) Document AI API about the status of a previously submitted asynchronous job.

dai_status(response, loc = "eu", token = dai_token(), verbose = FALSE)

Arguments

response

A HTTP response object generated by dai_async()

loc

A two-letter region code; "eu" or "us"

token

An authentication token generated by dai_auth() or another auth function

verbose

boolean; Whether to output the full response

Value

If verbose was set to TRUE, a HTTP response object. If verbose was set to FALSE, a string summarizing the status.

Examples

if (FALSE) {
# Short status message:
response <- dai_async(myfiles)
dai_status(response)

# Full status details:
response <- dai_async(myfiles)
status <- dai_status(response, verbose = TRUE)
}