Skip to main content
Version: 1.7.3

Get

Get

Use this endpoint to retrieve the information of a previously created M-941 form for the corresponding employer (payer). Your request JSON must include the corresponding SubmissionId and the RecordId (optional) for the forms.

GET StateFilings/MAWH/Get 

Request Params

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission.
RecordIdGuidAn unique identifier generated by TaxBandits when a WTH-10001 return is created. Mention the return's Record ID that you want to get.

Response Body

FieldTypeDescription
SubmissionIdGuidUnique identifier created by TaxBandits for each submission. Not required when you are creating a return.
StateWHRecordsObject[]Object to create M-941
SequenceIdStringA unique number given by an inbound application to identify failed records.
ReturnHeaderObjectIdentifies the supporting details of Form M-941.
QtrStringThe Quarter for which Form M-941 needs to be filed.
TaxYrStringThe tax year for which Form M-941 needs to be filed.
BusinessIdStringUse the unique BusinessId (Generated by TaxBandits) you received in the response of the Business CREATE Endpoint. If you do not have a BusinessId, ignore the field. By giving the BusinessId, you do not have to provide all the business information again.
BusinessObjectThe details of the business you're filing for.
BusinessNmStringName of the business.
PayerRefstringA unique identifier for each payer completing their information. This identifier can be used in future references of the payer in the API.
TradeNmStringName under which the business operates.
IsEINBooleanWhen true, identifies the business with an EIN.
EINorSSNStringWhen IsEIN is true, use Employer Identification Number (EIN). When IsEIN is false, use Social Security Number (SSN).
EmailStringEmail address of the business.
IsForeignBooleanWhen true, identifies the business as having a foreign address.
USAddressObjectIf IsForeign is false, pass the US address of the business.
Address1StringEmployer/Payer's US address (street address or post office box).
Address2StringEmployer/Payer's suite or apartment.
CityStringEmployer/Payer's city.
StateStringEmployer/Payer's state.
ZipCdStringEmployer/Payer's zip code.
ForeignAddressObjectIf IsForeign is true, pass the foreign address of the business.
Address1StringEmployer/Payer's foreign address (street address or post office box).
Address2StringEmployer/Payer's suite or apartment.
CityStringEmployer/Payer's city.
ProvinceOrStateNmStringEmployer/Payer's province or state name.
CountryStringEmployer/Payer's country.
PostalCdStringEmployer/Payer's postal code.
ReturnDataObject[]Identifies the Form M-941 data.
FormM941ObjectMassachusetts withholding tax returns.
WHIdNumStringMassachusetts withholding file number.
FilingFrequencystringFiling frequency of the Form M-941
MonthstringSelect the month for the monthly filing period.
IsFinalReturnBooleanWhen true, indicates that it is a final return
NumOfEmployeesNumberNumber of employees.
WHAmtNumberMassachusetts income tax withheld from all sources for the filing period
IsTaxPaidBooleanWhen true, identifies that the employer has made previous payments.
TaxPaidDetailsObject[]Identifies the tax paid details.
DatestringThe date the tax was paid. Format: MM/DD/YYYY or MM-DD-YYYY
AmountstringTax paid on the date mentioned
TaxPaidNumberTotal tax paid for the filing period
PrevCrdtAmtNumberPrevious credits payments made for the filing period
TotTaxPaidNumberTotal payments and credits.
TotTaxDueNumberTotal tax due.
PenaltyNumberTotal penalty amount
InterestNumberTotal interest due amount
TotBalanceDueNumberTotal due amount
OverPaymentRecoveryTypestringThe overpayment recovery type.
StatePaymentObjectObject that contains information about the payment details
AccountTypestringBank account type
BankNmstringBank account name of payment
BankRoutingNumstringBank Routing Number of payment
BankAccountNumstringBank Account Number for payment
PaymentAmtNumberAmount to be paid
PaymentReqDateStringDate when the payment has to be made.
Errorsobject[]Shows detailed error information
IdstringReturns the validation error Id
NamestringName of the validation error
MessagestringDescription of the validation error

Request Params

"statefilings/MAWH/get?SubmissionId=019db3c1-8275-71c4-8899-4f3ec8dff392"

Response JSON

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

{
"StatusCode": "200",
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "019dcdb8-1cc6-7168-ba3d-040d9e99121b",
"StateWHRecords": [
{
"SequenceId": "001",
"RecordId": "019dcdb8-1dd8-7087-9baa-cd677b556eed",
"ReturnHeader": {
"Qtr": "",
"TaxYr": "2025",
"Business": {
"BusinessId": "01f83dd9-6f9d-4ed4-a7ee-ec67a6f8d222",
"BusinessNm": "Snowdaze LLC",
"PayerRef": null,
"FirstNm": null,
"MiddleNm": null,
"LastNm": null,
"Suffix": null,
"TradeNm": "Mayfill Tech",
"IsEIN": true,
"EINorSSN": "74-5985016",
"Email": "james@sample.com",
"ContactNm": "John",
"Phone": "(789) 456-1231",
"PhoneExtn": null,
"Fax": null,
"BusinessType": "ESTE",
"SigningAuthority": {
"Name": "John",
"Phone": "(789) 789-7987",
"BusinessMemberType": "ADMINISTRATOR"
},
"KindOfEmployer": null,
"KindOfPayer": null,
"IsBusinessTerminated": false,
"IsForeign": false,
"USAddress": {
"Address1": "12 Main St",
"Address2": "Apt 2B",
"City": "Boston",
"State": "MA",
"ZipCd": "02108"
},
"ForeignAddress": null,
"ACADetails": null
}
},
"ReturnData": {
"FormM941": {
"WHIdNum": "WTH-74598501-001",
"FilingFrequency": "MONTHLY",
"Month": "NOV",
"IsFinalReturn": false,
"NumOfEmployees": "20",
"WHAmt": 200,
"IsTaxPaid": true,
"TaxPaidDetails": [
{
"Date": "11/21/2025",
"Amount": 60
},
{
"Date": "11/05/2025",
"Amount": 60
}
],
"TaxPaid": 120,
"PrevCrdtAmt": 60,
"TotTaxPaid": 180,
"TotTaxDue": 20,
"Penalty": 0,
"Interest": 0,
"TotBalanceDue": 20,
"OverPaymentRecoveryType": null
},
"StatePayment": {
"AccountType": "PERSONAL_CHECKING",
"BankNm": "IFB",
"BankRoutingNum": "021000021",
"BankAccountNum": "00133",
"PaymentAmt": 100,
"PaymentReqDate": "11/25/2025"
}
}
}
],
"Errors": null
}