Skip to main content
Version: 1.7.3

status

Use this endpoint to retrieve the status of online access for particular recipients. The API request must include the corresponding SubmissionId and the RecordIds.

POST OnlineAccess/Status
Run in Postman

Request Body

FieldTypeDescription
SubmissionIdGUIDUnique identifier of a submission
RecordIdsObject[]unique identifier generated by TaxBandits when a return is created

Request Body

{
"SubmissionId": "b8b7d0ad-51e2-424a-bc46-8425de87f7c7",
"RecordIds":[
"f5a4728c-9db3-4528-b8f6-97c0b3d3c47f"
]
}

Response Body

FieldTypeDescription
SuccessRecordsObject[]It will show the detailed information about the success status of online access
    SubmissionIdGUIDUnique identifier of a submission
    RecordIdGUIDUnique identifier of a record
    PayeeRefStringA unique identifier for each payee completing their information
    EmailStringEmail address of the recipient
    FormTypeStringReturns the type of form
    ConsentStatusStringReturns the status of consent
    ConsentStatusTsStringReturns date and time of consent given
    OnlineAccessStatusStringReturns the status of online access
    OnlineAccessStatusTsStringReturns date and time of actions made in online access
ErrorRecordsObject[]It will show the detailed information about the error status of failure records
ErrorsObject[]Shows detailed error information
    IdStringReturns the validation error Id
    NameStringName of the validation error
    MessageStringDescription of the validation error

Response JSON

{
"SuccessRecords": [
{
"SubmissionId": "c61f5fa0-67d6-4096-a175-6a9eb0f0c67e",
"RecordId": "e9f39bd7-76f7-4805-a3a9-e7eeed494d3a",
"PayeeRef": "Payee001",
"Email": "shawn1@sample",
"FormType": "Form1099NEC",
"ConsentStatus": "NOT_YET_CONSENTED",
"ConsentStatusTs": "02/26/2025 02:12:46",
"OnlineAccessStatus": "EMAIL_SENT",
"OnlineAccessStatusTs": "02/26/2025 02:13:08"
},
{
"SubmissionId": "c61f5fa0-67d6-4096-a175-6a9eb0f0c67e",
"RecordId": "5501bda6-bbac-4ca7-9d4e-4997207f350c",
"PayeeRef": "Payee002",
"Email": "shawn2@sample",
"FormType": "Form1099MISC",
"ConsentStatus": "CONSENTED",
"ConsentStatusTs": "02/26/2025 02:12:47",
"OnlineAccessStatus": "PDF_VIEWED",
"OnlineAccessStatusTs": "02/26/2025 02:13:08"
}
],
"ErrorRecords": [
{
"RecordId": "0b7def5d-fa53-453d-b091-94e232e9c4e0",
"Errors": [
{
"Id": "F00-100752",
"Name": "RecordIds[2].RecordId",
"Message": "Invalid RecordId"
}
]
},
{
"RecordId": "b2a3510e-f42c-45a1-987f-7081b267c447",
"Errors": [
{
"Id": "F00-100752",
"Name": "RecordIds[3].RecordId",
"Message": "Invalid RecordId"
}
]
}
],
"Errors": null
}