Step 2 - Check the Balance Refresh Job Status

After creating a balance refresh Job, you will need to then check the status of it. This will return information about the job, as well as provide insights into next steps needed to be taken by either your application and/or your end user to complete the balance retrieval.

Retrieve a created Transaction History Job

HTTP Request

Sandbox - GET https://api.sandbox.aerosync.com/v2/accounts/{connectionId}/job/{job_id}

Production - GET https://api.aerosync.com/v2/accounts/{connectionId}/job/{job_id}

Request Parameters

ParameterRequired?TypeDescription
job_idYesStringA Balance Refresh Job's unique identifier
connectionIdYesStringAerosync-specific connectionId received from the SDK onSuccess

Request and Response

GET https://api.sandbox.aerosync.com/v2/job/{{job_id}}
Authorization: Bearer {{token}}

{
  "status": "success",
  "statusCode": 200,
  "jobStatus": "COMPLETED",
  "mfaTriggered": false,
  "jobId": "REF-c869a583d3274a6aa2cbc45ef106f805",
  "userId": "68c13bc0855a4f85853f6aafaa43e461",
  "connectionId": "68c13bc0855a4f85853f6aafaa43e461"
}