Transmit
Transmit
Use this endpoint to transmit the new hire reports to the respective state agencies.
Key Points
- Once a report is transmitted, it cannot be edited or deleted.
- To transmit all reports under a Submission, provide only the SubmissionId in the request.
- To transmit specific reports within a Submission, provide the SubmissionId along with the RecordIds of the reports.
POST NewHire/Employee/Transmit Request Body
| Field | Type | Description |
|---|---|---|
| BusinessId | string | Unique Identifier of the business. |
| PayerRef | string | Unique identifier of the payer. Set by the client in the endpoint Business/RequestByUrl. |
| TIN | string | Tax Identification Number of business. |
| SubmissionId | Guid | Mention the NewHire returns Submission ID that you want to Get the records. |
| RecordIds | Guid[] | Mention the NewHire returns Record ID that you want to Get the records. Multiple RecordIds under the same Submission can be received by sending the RecordIds comma separated. |
Response Body
| Field | Type | Description |
|---|---|---|
| BusinessId | Guid | Unique Identifier of the business |
| PayerRef | string | Unique identifier of the payer. |
| SuccessRecords | object[] | It will show the detailed information about the success status of NewHire Form Records. |
| SequenceId | string | A unique number given by an inbound application to identify failed records. |
| RecordId | Guid | Unique identifier of a record. |
| EmployeeId | Guid | Unique Identifier of the business |
| EmpRef | string | Unique identifier of the payer. |
| ReportingState | string | Reporting state. Refer Static values. |
| Status | string | Returns the status of the records. |
| StatusTs | string | Returns date and time of return created. |
| Info | string | Returns information about the Federal Filing service. |
| Errors | object[] | Shows error information of state returns of New Hire form |
| Id | string | Returns the validation error Id. |
| Name | string | Name of the validation error. |
| Message | string | Description of the validation error. |
| ErrorRecords | object[] | It will show the detailed information about the error status of NewHire Form Records. |
| SequenceId | string | An unique reference ID for the submission that can be used to identify a particular record. The Sequence ID will be returned in the Response for your reference. |
| RecordId | Guid | Unique identifier of a record |
| Errors | object[] | Shows detailed error information |
| Id | string | Returns the validation error Id |
| Name | string | Name of the validation error |
| Message | string | Description of the validation error |
| Errors | object[] | Shows detailed error information |
| Id | string | Returns the validation error Id |
| Name | string | Name of the validation error |
| Message | string | Description of the validation error |
Request JSON
{
"BusinessId": "08631c17-564c-433d-a3ea-ff7f6f3ff1e6",
"PayerRef": null,
"TIN": null,
"SubmissionId": "01993c59-8621-77cb-8e74-f044c5d6ed70",
"RecordIds": [
"f5c0b155-7261-4f9d-b0bc-cad7a0f69d2e"
]
}
Response Json
- 200
- 400
- 402
- 401
Success Response - This is a sample response for successful API requests.
{
"StatusCode": "200",
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"BusinessId": "07e6d7d9-5463-43d2-a272-14dc563cb5e0",
"PayerRef": null,
"SubmissionId": "01993cc2-65a7-749f-ae9f-11228a524981",
"SuccessRecords": [
{
"SequenceId": "1",
"RecordId": "01993cc2-67a6-72ba-91d7-3e21e6ed3310",
"EmployeeId": "b3a91620-d26c-421e-95c6-1176522f105a",
"EmpRef": "2344",
"ReportingState": "SC",
"Status": "TRANSMITTED",
"StatusTs": "2025-09-12 03:14:03 -04:00",
"Info": null,
"Errors": null
}
],
"ErrorRecords": null,
"Errors": null
}
Bad Request Response - You'll get the below response when your API requests contain any validation errors.
{
"StatusCode": "400",
"StatusName": "BadRequest",
"StatusMessage": "Validation error has occurred",
"PayerRef": null,
"BusinessId": null,
"SubmissionId": null,
"SuccessRecords": null,
"ErrorRecords": null,
"Errors": [
{
"Id": "S00-000098",
"Name": "SubmissionId",
"Message": "SubmissionId is invalid."
}
]
}
{
"StatusCode": "402",
"StatusName": "CreditsNotSufficient",
"StatusMessage": "The Credit in your account is not sufficient to transmit all requested records",
"BusinessId": null,
"PayerRef": null,
"SubmissionId": null,
"SuccessRecords": null,
"ErrorRecords": null,
"Errors": [
{
"Id": "S00-000194",
"Name": "Insufficient BanditCash",
"Message": "Insufficient Banditcash to transmit the return"
}
]
}
Unauthorized Response - You'll get the below response when your API requests don't contain valid authentication credentials.
{
"StatusCode": 401,
"StatusName": "Unauthorized",
"StatusMessage": "Invalid authorization credentials",
"Errors": [
{
"Id": "AUTH-100018",
"Name": "Authorization",
"Message": "JWT EXPIRED"
}
]
}