Skip to main content
Version: 1.7.3

List

List

Use this endpoint to retrieve a list of all the withholding forms that have been created or transmitted to the state agencies for a specific business.

Key Points

  • The list can be filtered by TIN, SubmissionId, Filing Status and Quarter
  • You can also filter the results by a Date Range to narrow down results.
GET StateFilings/List   

Request Params

FieldTypeDescription
TaxYearstringTax year to be filed.
BusinessIdGuidUnique Identifier of a business
SubmissionIdGuidUnique identifier of a submission
TINstringList the withholding or UI records based on the given TIN (EIN).
StatusstringList the withholding or UI records based on the status
QuarterstringList the withholding or UI records based on the quarter
FromDatestringEnter a date from which the records need to be listed in MM/DD/YYYY format.
ToDatestringEnter a date till which the withholding or UI records created are to be listed in MM/DD/YYYY format.

Response Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission
BusinessIdGuidUnique identifier of a Business.
PayerRefstringUnique identifier of the payer.
StateFilingRecordsObjectPulls withholding or UI records with Success and Error statuses
SuccessRecordsobject[]It will show the detailed information about the success status of withholding or UI returns
RecordIdGuidUnique identifier of a record
StatestringReturns the State code of the withholding or UI return
FormTypestringReturns the Form type
StatusstringReturns the record status.
PDFUrlstringLink to download the PDF
ErrorRecordsobject []Contains the error records
RecordIdGuidUnique identifier of a record
StatestringReturns the State code of the withholding or UI return
FormTypestringReturns the Form type
StatusstringReturns the record status.
Errorsobject[]Shows error information
IdstringReturns the validation error Id.
NamestringName of the validation error.
MessagestringDescription of the validation error.
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 Id
NamestringName of the validation error
MessagestringDescription of the validation error

Request Params

"StateFilings/List?TaxYear=2025&State=SC&BusinessId=08631c17-564c-433d-a3ea-ff7f6f3ff1e6&SubmissionId=08631c17-564c-433d-a3ea-ff7f6f3ff1e6&TINType=EIN&TIN=123456789&Status=ACCEPTED&Quarter=Q1&FromDate=01/01/2025&ToDate=12/31/2025&Page=1&PageSize=25"

Response JSON

Success Response - This is a sample response for successful API requests.

{
"StatusCode": "200",
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"StateFilingRecords": [
{
"BusinessId": "846d6e66-80fc-4f0c-a712-8ccf8b18ed70",
"SubmissionId": "0199386b-0468-700b-a1ac-7b6960720c1c",
"RecordId": "0199386b-052d-700c-9720-723b15bacea8",
"PayerRef": null,
"BusinessNm": "HH LLC",
"State": "SC",
"FormType": "SC1605",
"TaxYr": "2025",
"Qtr": "Q1",
"Status": "ACCEPTED"
},
{
"BusinessId": "5479d64b-12e6-44f6-9f3b-575226a6022a",
"SubmissionId": "0199386b-0468-700b-a1ac-7b6960720c1c",
"RecordId": "0199386b-105e-741b-af10-f2bd2a01c22e",
"PayerRef": null,
"BusinessNm": "HK LLC",
"State": "SC",
"FormType": "SC1606",
"TaxYr": "2025",
"Qtr": "Q4",
"Status": "ACCEPTED"
}
],
"TotalRecords": 4,
"TotalPages": 1,
"PageSize": 100,
"Errors": null
}