Skip to main content
Version: 1.7.3

Transmit

This endpoint should be used to submit the BOI report to FinCEN. In your request JSON, provide the SubmissionId or Report Number. Note that after transmitting the report, it cannot be edited or deleted.

note

Before submitting a BOI report, make sure that the necessary identification documents are attached for both the Company Applicant and the Beneficiary Owner.

POSTBOIR/Transmit
Run in Postman

Request Body

FieldTypeDescription
SubmissionIdGuidProvide the SubmissionId (unique identifier created by TaxBandits for a submission) to identify which submission needs to be submitted.
Either SubmissionId or ReportNumber can be provided to transmit.
ReportNumberstringProvide the ReportNumber (unique identifier created by TaxBandits for a report) to identify which report needs to be submitted.

Request JSON

Request using SubmissionId.

{
"SubmissionId": "e081f20f-6f4f-4984-a369-bf409cc59a8a",
"ReportNumber": null
}

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200, 300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
SubmissionIdGuidUnique identifier provided by TaxBandits for each success submission.
ReportNumbernumberUnique identifier provided by TaxBandits for each success report in reference to view the report in TaxBandits application
ReportTypestringThe type of the report created in the submission
ReportingCompanyIdGuidUnique identifier provided by TaxBandits for each successfully added Reporting Company.
BOIRRecordsobjectPulls BOIR records with Success and Error statuses
   SuccessRecordsobjectIt will show the detailed information about the success status of BOIR Report
      ReportStatusstringProvides the Status of the report
      CreatedTsstringReturn created date and time
      UpdatedTsstringReturn updated date and time
   ErrorRecordsobject[]Object that provides the collection of error information in Return Data
CompanyApplicantsobject[]Pulls the information of errored node under the object Company Applicant
   SequenceIdstringA unique reference ID for the Company Applicant provided in the request to identify a particular applicant's error in the request
   Errorsobject[]Object that provides the collection of error information in Company Applicant
      IdstringError ID number. This ID is assigned by TaxBandits and it is unique for each error.
      NamestringName of the errored node.
      MessagestringShows the description of the error message
BeneficialOwnersobject[]Pulls the information of errored node under the object Beneficial Owners
   SequenceIdstringA unique reference ID for the Beneficial Owner provided in the request to identify a particular owner's error in the request
   Errorsobject[]Object that provides the collection of error information in Beneficial Owners
      IdstringError ID number. This ID is assigned by TaxBandits and it is unique for each error.
      NamestringName of the errored node.
      MessagestringShows the description of the error message
SubmitterInformationobject[]Pulls the information of errored node under the object Submitter Information
   IdstringError ID number. This ID is assigned by TaxBandits and it is unique for each error.
   NamestringName of the errored node.
   MessagestringShows the description of the error message
   Errorsobject[]Object that provides the collection of error information in Return Header
      IdstringError ID number. This ID is assigned by TaxBandits and it is unique for each error.
      NamestringName of the errored node.
      MessagestringShows the description of the error message

Response JSON

This is a sample response for successful API requests.

{
"StatusCode": 200,
"StatusName": "OK",
"StatusMessage": "Successful API call",
"SubmissionId": "d6d5511a-9cfc-4905-94e8-98c59561f5a8",
"ReportNumber": "110002",
"ReportType": "INITIAL",
"ReportingCompanyId": "ba7633b3-3a23-4e5c-828d-1a73b8c8070e",
"BOIRRecords": {
"SuccessRecords": {
"ReportStatus": "TRANSMITTED",
"CreatedTs": "2024-08-08 03:09:05 -04:00",
"UpdatedTs": "2024-08-08 03:09:05 -04:00"
},
"ErrorRecords": null
},
"Errors": null
}