get_job_status {ibmAcousticR} | R Documentation |
Get the Status of a Submitted Job
Description
Prior to attempting this you must authenticate and obtain an access token, and then submit a call that is processed as a job to retrieve from the Acoustic portal. The function used to submit that job will provide the Job Id.
Usage
get_job_status(pod_number, session_access_token, desired_job_id)
Arguments
pod_number |
Pod number is the number in the URL, e.g. engage1.silverpop.com. |
session_access_token |
Access token obtained during this session. |
desired_job_id |
Id for job for which you want the status. |
Value
A vector with the session's access token.
Examples
## Not run:
access_token <- acoustic_auth(org_client_id = "abc",
org_client_secret = "xyz",
my_refresh_token = "123")
job_id <- get_all_contacts(access_token)
get_job_status(1, access_token, "123456789")
## End(Not run)
[Package ibmAcousticR version 0.2.1 Index]