Skip to main content
Version: 1.7.3

List

Use this endpoint to obtain the list of businesses created within a specified date range. In the request JSON, you must provide the date range and the number of businesses you want to be listed on each page.

GET Business/List 
Run in Postman

Request Params

FieldTypeDescription
PageintSelected page number to be listed.
PageSizeintNumber of businesses to be listed in each page.
FromDatestringList Businesses created from
ToDatestringList Businesses created upto

Response Body

FieldTypeDescription
StatusCodenumberReturns the status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message
Businessobject[]Business Details of all the business
    BusinessIdGuidBusiness Identifier (Autogenerated)
    PayerRefstringUnique identifier of the payer. Set by the client.
    BusinessNmstringName of the Business.
    FirstNmstringFirst Name of the Individual
Size Range: ..20
    MiddleNmstringMiddle Name of the Individual
Size Range: ..20
    LastNmstringLast Name of the Individual
Size Range: ..20
    SuffixstringSuffix of the Individual
Allowed values

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

    EINorSSNstringEmployer Identification Number or Social Security Number
    EmailstringOptional Employer's email address.
    ContactNmstringOptional Name of a person who could be contacted by the IRS if needed.
    BusinessTypestringType of business entity.
    IsBusinessTerminatedBooleanWhen true, identifies the business as terminated.
PagenumberRequested Page Number.
TotalRecordsnumberTotal number of records returned in the response.
TotalPagesnumberNumber of pages with the records.
PageSizenumberRequested Page Size.
Errorsobject[]Shows detailed error information.
    CodestringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.
    TypestringType of validation error.


Business/List?Page=1&PageSize=10&FromDate=08/01/2024&ToDate=08/02/2024

Response JSON

  {
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Businesses": [
{
"BusinessId": "69b9461c-c107-41d4-9582-1ef544a4a961",
"PayerRef": "Snow123",
"BusinessNm": null,
"FirstNm": "James",
"MiddleNm": null,
"LastNm": "Smith",
"Suffix": null,
"EINorSSN": "XXX-XX-0999",
"Email": "james@sample.com",
"ContactNm": "James Smith",
"BusinessType": "PART",
"IsBusinessTerminated": false
},
{
"BusinessId": "519a84f4-5e56-496a-82f3-18f51fdf3d75",
"PayerRef": "Snow123",
"BusinessNm": "SnowDaze LLC",
"FirstNm": null,
"LastNm": null,
"MiddleNm": null,
"Suffix": null,
"EINorSSN": "XX-XXX0999",
"Email": "james@sample.com",
"ContactNm": "James Smith",
"BusinessType": "PART",
"IsBusinessTerminated": false
}
],
"Page": 1,
"TotalRecords": 2,
"TotalPages": 1,
"PageSize": 10,
"Errors": null
}

Sample Codes