API

Create Tax Form Request (Business)

POST https://app.moderntax.io/api/v1/tax-form-requests

Create a transcript request for an individual business.

Supports requesting transcripts for multiple years ie: "years": [2017, 2020, 2021]

Headers

Request Body

{ 
  "taxpayer_id": "7a3fa0bf-0352-4e17-8e5f-482fee5d9f4b",
  "business_name": "ModernTax",
  "created_at": "2021-03-11T16:38:57.099Z",
  "transcripts": [
    {
      "id": 98,
      "name": "FormName",
      "created_at": "2021-03-25T23:06:25.932Z",
      "pdf_url": "https://moderntaxstorage.s3...",
      "summary": "..."
    }
  ]
}

Create Tax Form Request (Individual)

POST https://app.moderntax.io/api/v1/tax-form-requests

Create a transcript request for an individual.

Currently, there is only support for requesting a single year for an individual ie: "years": [2019]

Headers

Request Body

{ 
  "success": true,
  "created_at": "2021-03-11T16:38:57.099Z",
  "transcripts": [{...}]
}

Create Multiple Tax Form Requests

POST https://app.moderntax.io/api/v1/tax-form-requests/bulk-upload

Bulk multiple tax form requests within a single post request.

Headers

Request Body

{ 
  "taxpayer_id": "7a3fa0bf-0352-4e17-8e5f-482fee5d9f4b",
  "full_name": "John Smith",
  "created_at": "2021-03-11T16:38:57.099Z",
  "transcripts": [
    {
      "id": 98,
      "name": "201712_Verification of Non-Filing_SMIT",
      "created_at": "2021-03-25T23:06:25.932Z",
      "pdf_url": "https://moderntaxstorage.s3..."
    },
    {
      "id": 99,
      "name": "201812_Tax Return Transcript_SMIT",
      "created_at": "2021-03-25T23:06:25.932Z",
      "pdf_url": "https://moderntaxstorage.s3..."
    }
  ]
}

Last updated