Skip to main content
Version: 1.7.3

BOI Report Status Change

When FinCEN processes your BOI report, you can configure webhooks to receive status notifications.

Steps to Configure Webhook​ for BOIR:

  1. Log in to the Developer Console. Navigate to Settings > Webhook Notifications.
  2. Click ‘Add Webhook’. Configure Webhooks for the event type ‘BOI Report Status Change’.
  3. Enter the callback URL and click on the Submit button. Ensure that the callback URL you enter is valid, as the API will authenticate this URL by posting a sample JSON. The URL will be activated only when we receive the 200 response. You must follow these best practices to have a valid callback URL for Webhook.
  4. Then, provide a Notify email. This email will be used by TaxBandits to notify you regarding any failed attempts of Webhook posting.

Here is the sample Webhook Post:

Here is the sample of Webhook if your BOIR is accepted by FinCEN:

{
"SubmissionId": "a232b5fe-b6cb-4bc7-a17a-0d907811e56c",
"ReportNumber": "109735",
"ReportType": "INITIAL",
"ReportStatus": "ACCEPTED",
"FilingReference": {
"FiledWith": "FinCEN",
"BOIRId": "325325",
"SubmissionTrackingId": "235235",
"BOITranscript": "https://s3.amazonaws.com/expressirsforms.com/UserFiles/66a2a4692b4686925b996281/efileBoir/Transcript/c88a2e8f-f44f-40f4-bf61-5d85478eada7/BOIRKEvL8YLsCgmsU9aq.pdf",
"FinCENID": null
},
"StatusTime": "2024-07-22T06:49:48.4429266-04:00",
"RejectedBy": null,
"RejectionError": null
}

Respond to Webhook Post from API​

You must respond to the Webhook post by sending an HTTP 200 OK Response. Any other code other than 200 will be treated as an incomplete call. This API does not support 301 redirects, which will be treated as an error. Learn more

You are required to initiate a response to our Webhook request within 5 seconds, if not, the request will be treated as timeout. If the API doesn’t receive a response during the 5-second time window or in case of an error, it will attempt to retry the connection a total of 9 times within 24 hours.

Before you respond to a Webhook request, you must validate if the request was sent from TaxBandits. To learn how to validate Webhook requests, click here.