Skip to main content
Version: 1.7.3

List

Lists Form 945s created for a date range.

GET Form945/List 
Run in Postman

Request Params

FieldTypeDescription
BusinessIdGuidOptional Unique identifier of a business
EINstringOptional Employer Identification Number
PagenumberOptionalPulls the page number of the page selected
PageSizenumberOptional Number of 945 records to be listed in each page
Note: PageSize can be maximum of 100.
EfileStatusstringOptional List the 945 records based on the status
FromDatestringOptionalEnter a date from which the form Form 945 records need to be listed in MM/DD/YYYY format
ToDatestringOptional Enter a date till which the 945 records created are to be listed in MM/DD/YYYY format.

Request Params

"Form945/List?BusinessId=b6d9e695-cc72-46f7-b131-58317a54668b&FromDate=01/01/2023&ToDate=12/31/2023&EfileStatus=CREATED&Page=1&PageSize=10&EIN=144718269"

Response Body

FieldTypeDescription
StatusCodenumberReturns the HTTP status codes like 200,300 etc.
StatusNamestringName of the status code.
StatusMessagestringDetailed status message.
Form945RecordListobject[]Returns detailed information of the Form 945 records.
    SubmissionIdGuidUnique identifier of a submission
    BusinessIdGuidUnique Identifier of the business
    BusinessNmstringName of the business
    PayerRefstringUnique identifier of the payer.
    EINstringEmployer Identification Number
    BusinessTypestringType of business.
    RecordIdGuidUnique identifier of a record
    TaxYrstringTax year for which Form 945 needs to be filed
    IRSPaymentTypestringPayment type to make payments pay the IRS. Choose from EFW, EFTPS, Check or Money Order
    ReturnTypestringType of the return to be filed. Enter value as FORM945
    EFileStatusstringList the 945 records based on the status.
TotalRecordsnumberTotal number of records.
TotalPagesnumberTotal number of pages.
PagenumberPulls the page number of the page selected
PageSizenumberNumber of 945 records to be listed in each page.
Errorsobject[]Shows detailed error information.
    IdstringReturns the validation error code.
    NamestringName of the validation error.
    MessagestringDescription of the validation error.

Response JSON

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

{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"Form945RecordList": [
{
"SubmissionId": "5bfa4bb2-2b1d-4690-84de-05a4536beda4",
"BusinessId": "b6d9e695-cc72-46f7-b131-58317a54668b",
"BusinessNm": "Snowdaze LLC",
"EIN": "14-4718269",
"BusinessType": "Partnership or LLC as Partnership",
"PayerRef": "Snow123",
"RecordId": "ec70c5d7-7289-4ca1-9a21-6c0aa9f59bd5",
"TaxYr": "2024",
"IRSPaymentType": "EFTPS",
"ReturnType": "Form945",
"EFileStatus": "CREATED"
}
],
"TotalRecords": 1,
"TotalPages": 1,
"Page": 1,
"PageSize": 10,
"Errors": null
}