Skip to main content
Version: 2.0.0

Get

Get

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

POST StateFilings/NJUI/Get 

Request Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of a submission.
RecordIdGuidAn unique identifier generated by TaxBandits when a WR-30 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.
StateUIRecordsObject[]Object to identify the records.
SequenceIdStringA unique identifier for this record.
ReturnHeaderObjectContains business information.
TaxYearStringThe tax year for which the Form WR-30 is to be filed.
QtrStringThe quarter for which the Form WR-30 is to be filed.
BusinessobjectObject to identify the Business Details.
BusinessIdGuidUse the unique Business ID (Generated by TaxBandits) that you received in the response of the Business CREATE Endpoint. If you do not have a Business ID, ignore the field. By giving the Business ID, you do not have to provide all the business information again.
PayerRefstringYour unique identifier for the payer. Can replace BusinessId in future requests.
IsDefaultBusinessBooleanWhen set to TRUE, this business will be set as the default across requests that do not specify a business.
TINDetailsobjectTIN information for the business.
FormatstringSpecifies how the TIN is passed.
TINTypestringTIN type of the business.
TINstringThe TIN value according to the Format selected.
IndividualNmobjectRetruns name of the individual
FirstNmstringThe first name of the individual.
MiddleNmstringMiddle name of the individual.
LastNmstringThe last name of the individual.
SuffixstringSuffix of the individual's name.
BusinessNmstringLegal name of the business.
NameCtrlstringName control of the business as registered with the IRS.
DBADetailsobject[]DBA (Doing Business As) information.
DBANmstringName of the DBA
DBARefstringUnique identifier for the DBA.
DBAIdGuidTaxBandits-generated DBA identifier.
Addressobject[]Address information of the DBA.
Address1stringStreet address or PO Box.
Address2stringOptional Suite or apartment number.
CitystringDBA's city.
ProvinceOrStatestringDBA's province or state name.
ZipcdstringDBA's ZIP code.
CountrystringDBA's 2-character country code.
EmailstringEmail address of the Business.
AddressobjectPrimary address of the business.
Address1stringStreet address or PO Box of the business.
Address2stringSuite or apartment number of the business.
CitystringCity of the business.
ProvinceOrStatestringProvince or state name of the business.
ZipCdstringZIP code of the business.
Size Range: 5-16
Countrystring2-character country code of the business.
ContactDetailsobject[]Details of the person the IRS can contact regarding the given business.
FirstNmstringFirst name of the contact person.
MiddleNmstringMiddle name of the contact person.
LastNmstringLast name of the contact person.
SuffixstringThe suffix of the contact person.
PhonestringPhone number of the contact person.
PhoneExtnstringPhone extension number.
EmailstringEmail address of the contact person.
FaxstringFax number of the contact person.
ReturnDataObjectContains the return information.
BusinessTypeStringLegal structure of the business.
SigningAuthorityObjectDetails of the person authorized to sign the return. Mandatory for 94x forms.
FirstNmStringFirst name of the signatory.
MiddleNmStringMiddle name of the signatory.
LastNmStringLast name of the signatory.
SuffixStringThe suffix of the signatory.
PhoneStringPhone number of the signatory
PhoneExtnStringPhone extension number of the signatory.
BusinessMemberTypeStringTitle or role of the signatory.
ReturnDataObjectContains the return information.
FormWR30ObjectIdentifies the Form WR-30 data.
UIIdNumberStringEmployer's New-Jersey Unemployment Account Number.
TotalNumberOfEmployeeStringTotal number of employees for the quarter
TotalGrossWagesNumberTotal wages paid for the quarter.
EmployeeDetailsObjectObject to identify the employee details.
EmployeeSequenceIdstringA unique number to identify this record.
EmployeeIdGuidA unique ID generated by TaxBandits after the return is created and returned in the response.
EmployeeRefstringA unique identifier of the employee.
SSNstringEmployee's Social Security Number (SSN).
FirstNmstringEmployee's first name.
MiddleNmstringEmployee's middle name.
LastNmstringEmployee's last name.
SuffixstringEmployee's suffix.
Addressobject[]Address information of the Employee.
Address1stringStreet address or PO Box.
Address2stringSuite or apartment number.
CitystringDBA's city.
ProvinceOrStatestringEmployee's province or state name.
ZipcdstringZIP code.
Countrystring2-character country code of the employee.
GrossWagesNumberTotal gross wages reported for the quarter.
EmployeeBaseWeekstringNumber of base weeks an employee worked and earned the minimum required wages during the reporting period
Errorsobject[]Shows detailed error information
IdstringReturns the validation error Id
NamestringName of the validation error
MessagestringDescription of the validation error

Request JSON

statefilings/NJUI/Get?RecordId=01999580-9061-77d5-86be-bc5686a6a5a5&SubmissionId=0199c8cc-6d8a-77a7-b401-aed04901d431

Response JSON

{
"SubmissionId": "019dcdb3-913d-779d-b7b1-f1317b865b24",
"StateUIRecords": [
{
"SequenceId": "001",
"ReturnHeader": {
"TaxYr": "2025",
"Qtr": "Q1",
"Business": {
"BusinessNm": "Vertex Construction LLC",
"IsEIN": true,
"EINorSSN": "45-1254875",
"BusinessType": "PART",
"SigningAuthority": {
"Name": "Natalie Zimmerman",
"Phone": "7132153151",
"BusinessMemberType": "OWNER"
},
"IsForeign": false,
"USAddress": {
"Address1": "1700 Lincoln St",
"Address2": "Suite 2500",
"City": "Denver",
"State": "CO",
"ZipCd": "80203"
}
}
},
"ReturnData": {
"FormWR30": {
"UIIdNum": "05613546",
"TotNumOfEmp": "5",
"TotGrossWages": "6000.00",
"EmpDetails": [
{
"EmployeeId": null,
"EmployeeSequenceId": "12",
"EmployeeRef": "Payref002",
"SSN": "001-45-6924",
"FirstNm": "John",
"LastNm": "Smith",
"MiddleNm": "S",
"Suffix": "Jr",
"Address": {
"Address1": "12 Main St",
"Address2": "CC Avenue",
"City": "Rock Hill",
"ProvinceOrState": "SC",
"ZipCd": "29730",
"Country": "US",
},
"GrossWages": "10000.00",
"EmpBaseWeek": "13"
}
]
}
}
}
],
"Errors": null
}