POST
/
providers
/
irs
/
f8821
curl --request POST \
  --url https://api.trychart.com/providers/irs/f8821 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "personalInfo": {
    "firstName": "John",
    "lastName": "Doe",
    "ssn": "123456789"
  },
  "businessInfo": {
    "name": "Test, Inc.",
    "taxId": "123456789",
    "type": "S-Corporation",
    "phone": "1112223344",
    "title": "Chief Executive Officer"
  },
  "address": {
    "street": "123 Main St",
    "other": "Apt 1",
    "city": "San Francisco",
    "state": "CA",
    "zip": "94101"
  },
  "signatureBase64": "<string>",
  "signatureText": "<string>",
  "form56": {
    "identification": {
      "taxpayer": {
        "name": "<string>",
        "address": {
          "street": "<string>",
          "other": "<string>",
          "city": "<string>",
          "state": "<string>",
          "zip": "<string>"
        },
        "identificationNumber": "<string>",
        "decedentSSN": "<string>"
      },
      "fiduciary": {
        "name": "<string>",
        "address": {
          "street": "<string>",
          "other": "<string>",
          "city": "<string>",
          "state": "<string>",
          "zip": "<string>"
        }
      }
    },
    "authority": {
      "1": "a",
      "1gDesc": "<string>",
      "2a": "<string>",
      "2b": "<string>"
    },
    "tax": {
      "5": "<string>",
      "types": [
        "Income"
      ],
      "typeDesc": "<string>",
      "forms": [
        "a"
      ],
      "formDesc": "<string>"
    },
    "proceedings": {
      "name": "<string>",
      "address": {
        "street": "<string>",
        "other": "<string>",
        "city": "<string>",
        "state": "<string>",
        "zip": "<string>"
      },
      "date": "<string>",
      "time": {
        "text": "<string>",
        "amOrPm": "AM"
      },
      "initiationDate": "<string>",
      "docketNumber": "<string>",
      "placeOfOtherProceedings": "<string>"
    },
    "title": "<string>"
  },
  "extraDesignees": [
    {
      "name": "<string>",
      "address": {
        "street": "123 Main St",
        "other": "Apt 1",
        "city": "San Francisco",
        "state": "CA",
        "zip": "94101"
      },
      "cafNumber": "<string>",
      "monitorIRSNotices": true
    }
  ]
}'
{
  "authorizationCode": "578453a7dc8f1fdcb237d96a98c6b5ef6282108c"
}

Authorizations

Authorization
string
header
required

Please use base64 encoded client_id:client_secret. You can use this command to generate the base64 encoded string: echo -n 'client_id:client_secret' | base64

Body

application/json
personalInfo
object
required
address
object
required
businessInfo
object
signatureBase64
string

Base64 encoded signature image. Only supply the base64 string, not the 'data:image/png;base64,' prefix.

signatureText
string

The typed name of the signer.

Minimum length: 1
form56
object

IRS Form 56 (https://www.irs.gov/pub/irs-pdf/f56.pdf). Only required if the signer of the form 8821 is the fiduciary and not the taxpayer.

extraDesignees
object[]

Response

201 - application/json
IRS 8821 Form Submission Response
authorizationCode
string
Example:

"578453a7dc8f1fdcb237d96a98c6b5ef6282108c"