Skip to main content
Version: 1.7.3

GetTranscript

This endpoint is used to get the transcript of the BOI reports accepted/rejected by the FinCEN. The request must include the SubmissionId or Report Number.

GETBOIR/GetTranscript
Run in Postman

Request Params

FieldTypeDescription
SubmissionIdguidProvide the SubmissionId (unique identifier created by TaxBandits for a submission) to identify for which submission needs to Get the Transcript.
Either SubmissionId or ReportNumber can be provided to get the transcript of the Report.
ReportNumberstringProvide the ReportNumber (unique identifier created by TaxBandits for a report) to identify which report needs to Get the Transcript.

Request Params

Request using SubmissionId.

BOIR/GetTranscript?SubmissionId=954cdad5-3b8a-4123-9052-8beba4be5376

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200, 300 etc.
StatusNamestringName of the status code
StatusMessagestringDetailed status message
SubmissionIdGuidReturns the SubmissionId of the report
ReportNumbernumberReturns the Report Number for which the request was made.
ReportTypestringThe type of the report created in the submission
ReportStatusstringReturns the status of the report
BOITranscriptstringReturns the Transcript of the accepted/rejected report provided by the FinCen
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",
"SubmissionId": "0efbd933-0047-4544-89e3-cf049dd8165a",
"ReportNumber": "112426",
"ReportType": "INITIAL",
"ReportStatus": "ACCEPTED",
"BOITranscript": "UserFiles/66badf6c02714fadeda218c/f3ca092e-b531-4abe-829c-9cf13366e4a5transcript/Transcript_66fbc48de0bef3aae8193c20.pdf",
"Errors": null
}