Skip to main content
GET
/
api
/
v1
/
income-docs
/
checklist
Income Document Checklist
curl --request GET \
  --url https://api.example.com/api/v1/income-docs/checklist
[
  {
    "agency": "TravelNurse Inc",
    "expectedDocType": "w2",
    "received": true,
    "document": {
      "id": 1,
      "wages_cents": 4680000
    },
    "trackedIncome": 4680000
  },
  {
    "agency": "StaffHealth",
    "expectedDocType": "w2",
    "received": false,
    "document": null,
    "trackedIncome": 2340000
  }
]
Cross-references assignments with uploaded income documents to show which W-2s/1099s are expected and which have been received.

Query Parameters

year
string
default:"current year"
Tax year (YYYY).

Response

[
  {
    "agency": "TravelNurse Inc",
    "expectedDocType": "w2",
    "received": true,
    "document": {
      "id": 1,
      "wages_cents": 4680000
    },
    "trackedIncome": 4680000
  },
  {
    "agency": "StaffHealth",
    "expectedDocType": "w2",
    "received": false,
    "document": null,
    "trackedIncome": 2340000
  }
]
expectedDocType
string
Expected document type based on the user’s employment_type: w2 for W-2 employees, 1099_nec for 1099 contractors.
trackedIncome
integer
Total base pay from assignments with this agency (cents).