Skip to main content
Version: 1.7.3

List

List

This endpoint returns a paginated list of recipients created within a specified date range. Use this to audit your recipient records or build a directory view within your application.

In the request, you must provide the date range and the number of recipients you want to be listed on each page.

GET Recipient/List

Request Params

FieldTypeDescription
BusinessIdGuidOptional Unique identifier of a business.
PayeeRefStringOptionalA unique identifier for each payee completing their information. This identifier can be used in future references of the payee in the API.
Size Range: 1-50
BusinessTINTypestringOptionalTIN Type of the Business.
BusinessTINstringOptionalTIN of the business.
PagenumberOptionalPulls the records listed in the page selected
PageSizenumberOptionalNumber of recipient records to be listed in each page.
Note: PageSize can be maximum of 100.
FromDatestringOptionalEnter a date from which the Form recipient records need to be listed in MM/DD/YYYY format.
ToDatestringOptionalEnter a date till which the recipient records created are to be listed in MM/DD/YYYY format.
RecipientIdGuidOptionalA unique identifier generated by TaxBandits for a Recipient. You can use this ID for your future reference to Update.
RecipientTINStringOptionalEnter the nine-digit taxpayer identification number of the Recipient (SSN, ITIN, ATIN, or EIN).
Size Range: 9
RecipientTINTypeStringOptionalSpecify the TIN type of the recipient.
Allowed values

"SSN", "EIN", "ITIN", "ATIN"

Response Body

FieldTypeDescription
BusinessobjectObject to identify the Business Details.
BusinessIdGuidUnique identifier of a Business.
BusinessNmstringName of the business.
FirstNmstringFirst Name of the Individual
MiddleNmstringMiddle Name of the Individual
LastNmstringLast Name of the Individual
SuffixstringSuffix of the Individual
Allowed values

"Jr", "Sr", "I", "II", "III", "IV", "V", "VI", "VII"

PayerRefstringUnique identifier of a Payer.
TINTypestringTIN type of the business.
TINstringTIN of the business.
Recipientobject[]Returns the recipient details.
RecipientIdGuidA unique identifier generated by TaxBandits for a Recipient. You can use this ID for your future reference to Update.
TINTypestringTIN type of the Recipient.
TINstringTIN of the Recipient.
FirstPayeeNmstringReturns the name of the recipient.
SecondPayeeNmstringReturns the name of second recipient.
FirstNmstringFirst Name of the Individual
MiddleNmstringMiddle Name of the Individual
LastNmstringLast Name of the Individual
SuffixstringSuffix of the Individual
Allowed values

"Jr", "Sr", "I", "II", "III", "IV", "V", "VI", "VII"

PayeeRefstringA unique identifier for each payee completing their information.
EmailstringEmail address for whom the online access to be given.
TotalRecordsnumberTotal number of records listed in the response.
TotalPagesnumberTotal number of pages.
PagenumberReturns the page number in which the records are listed.
PageSizenumberNumber of records listed in each page.
Errorsobject[]Shows detailed error information.
IdstringReturns the validation error code.
NamestringName of the validation error.
MessagestringDescription of the validation error.
Request Params
Recipient/List?BusinessId=77cabe33-ce9f-4d65-83ea-1d3d67d4a11a
Response Json
ResponseDescriptionAction
200
Success Response - This is a sample response for successful API requests.
Response: 200
{
"Business": {
"BusinessId": "177ca4f6-8bae-4b67-afbc-86a24e759831",
"BusinessNm": "Snowdaze LLC",
"FirstNm": null,
"LastNm": null,
"MiddleNm": null,
"Suffix": null,
"PayerRef": "Snow123",
"TINType": "EIN",
"TIN": "03-4624530"
},
"Recipient": [
{
"RecipientId": "35b5de7e-64bf-45e1-a782-c16d9d7e72a3",
"TINType": "SSN",
"TIN": "327-55-9984",
"FirstpayeeNm": null,
"SecondpayeeNm": null,
"FirstNm": "Shawn",
"LastNm": "Williams",
"MiddleNm": "B",
"Suffix": "IV",
"PayeeRef": "PayeeRef001",
"Email": "shawn@sample.com"
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 100,
"Errors": null
}