JavaScript
import Finch from '@tryfinch/finch-api'; const client = new Finch({ accessToken: 'My Access Token', }); const manualAsyncJob = await client.jobs.manual.retrieve('job_id'); console.log(manualAsyncJob.job_id);
{ "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "status": "pending", "body": [ "<unknown>" ] }
Get a manual job by job_id. Manual jobs are completed by a human and include Assisted Benefits jobs.
job_id
Please use your Access Token
Header used to specify the version for a given API request. Current version is 2020-09-17.
OK
pending
in_progress
error
complete
Specific information about the job, such as individual statuses for batch jobs.
Was this page helpful?