Skip to main content
Version: 2.0.0

ViewAttachment

ViewAttachment

This endpoint is used to view attachments uploaded for a particular 1099 form.

In your API request, you must include the RecordId of the specific form for which you want to view attachments. The response will have the file path to access the attachments.

GET Attachment/View 

Request Body

FieldTypeDescription
RecordIDGuidA Unique identifier of the records given by TaxBandits

Response Body

FieldTypeDescription
RecordIDGuidA unique Identifier of the records generated by TaxBandits
FilePathStringFile path of the attachment document
Errorsobject[]Shows detailed error information.
IdstringReturns the validation error ID.
NamestringName of the validation error.
MessagestringDescription of the validation error.
Request Params
SampleDescriptionAction
Sample 1
Query Params - View attachments uploaded for a particular 1099 form
Sample 1
Attachment/View?RecordId=04ec74ea-9099-42a0-9a64-710a4d7eec37
Response JSON
ResponseDescriptionAction
200
Success Response - You'll get the below response when the request is processed successfully
Response: 200
{
"RecordID": "04ec74ea-9099-42a0-9a64-710a4d7eec37",
"FilePath": "https://amazonaws.com/pdfs/a570efbd-740f-4ae2-bfe7-26356cd85148.pdf",
"Errors": null
}