Retrieves the details of an existing job. You need only supply the unique job identifier that was returned upon job creation.

Arguments

id
string, required

The identifier of the job to be retrieved.

Returns

Returns a job if a valid job ID was provided. Returns an error otherwise.

GET /jobs/{job.id}
GET /jobs/61723 HTTP/1.1
Authorization: Bearer YOUR_ACCESS_TOKEN
HTTP/1.1 200 OK
Content-Type: application/json

{
  "type": "job",
  "id": "61723",
  "created": "2016-06-08T09:10:32.000Z",
  "updated": "2016-06-08T09:14:28.000Z",
  "steps": [
    {
      "title": "verify-credentials",
      "status": "success",
      "result":
        {
          "type": "link",
          "url": "/users/ea3a81/connections/8fce3b"
        }
    },
    {
      "title": "retrieve-accounts",
      "status": "in-progress",
      "result": null
    },
    {
      "title": "retrieve-transactions",
      "status": "pending",
      "result": null
    }
  ],
  "links": {
    "self": "/jobs/61723",
    "source": "/users/ea3a81/connections/8fce3b"
  }
}