Skip to main content
Version: 1.7.3

GetAllSubmissionId

Important

Due to a recent federal court order, reporting companies are not required to file beneficial ownership information (BOI) with FinCEN and will not face liability for failure to do so while the order remains in effect. However, companies may still voluntarily submit BOI reports.

As a result, TaxBandits is no longer accepting BOI reports at this time. We will provide further guidance as soon as possible.

This endpoint can be used to retrieve all the SubmissionIds of the BOI Reports created in TaxBandits.

GETBOIR/GetAllSubmissionId
Run in Postman

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200, 300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
SubmissionIdsObject[]Lists the SubmisssionIds of all the BOI Report
   SubmissionIdGuidReturn the SubmissionId of the report
   CreatedTsstringReturns the created date and time of the submission
   UpdatedTsstringReturns updated date and time of the submission
Errorsobject[]Object that provides the collection of error information in the request
   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",
"SubmissionIds": [
{
"SubmissionId": "ec893456-2d31-45c9-a0c3-fd5968d068b2",
"CreatedTs": "2024-08-05T05:10:17.414Z",
"UpdatedTs": "2024-08-05T05:10:17.414Z"
},
{
"SubmissionId": "41859fe9-83cd-4988-8425-6f90cda7bc8f",
"CreatedTs": "2024-08-05T07:31:29.05Z",
"UpdatedTs": "2024-08-05T07:31:29.05Z"
}
],
"Errors": null
}