Skip to main content
POST
/
api
/
v1
/
tax-home-docs
Create Tax Home Document
curl --request POST \
  --url https://api.example.com/api/v1/tax-home-docs \
  --header 'Content-Type: application/json' \
  --data '
{
  "doc_type": "<string>",
  "month": 123,
  "year": 123,
  "s3_key": "<string>"
}
'

Request Body

doc_type
string
required
Document type: rent_receipt or utility_bill.
month
integer
required
Month (1–12).
year
integer
required
Year (YYYY).
s3_key
string
required
S3 key of the uploaded document file.

Response

Returns the created document with status 201.

Errors

StatusCause
400Invalid doc_type, month, or year