Skip to main content
Version: 2.0.0

Transmit

Transmit

This endpoint can be used to transmit Form 1099 returns to the federal and/or state agencies.

Key points

  • Call this endpoint only after all validation errors are resolved. If errors exist, review and correct them before transmitting.
  • To transmit all returns under a submission, provide only the SubmissionId in the request.
  • To transmit specific returns within a submission, provide the SubmissionId along with the RecordIds of the returns as an array.
  • Once a form is transmitted, it cannot be edited or deleted.
POST acaformutility\transmit 

Request Body

FieldTypeDescription
SubmissionIdGuidA unique identifier of a submission.

Response Body

FieldTypeDescription
SubmissionIdGuidUnique identifier of the submission containing the transmitted record.
FormACARecordsobject[]Returns the transmitted Form ACA records along with their federal, state, and distribution statuses.
FormTypestringDenotes the type of tax form that was transmitted
RecordIdGuidUnique identifier generated for the transmitted tax form record.
FederalStatusobjectReturns the federal transmission status of the record.
StatusCdstringStatus code representing the federal transmission status.
StatusstringCurrent status of the federal transmission (for example, TRANSMITTED, ACCEPTED, REJECTED).
InfostringAdditional information related to the federal transmission status. Returns null if no additional information is available.
StatusTsstringDate and time when the federal transmission status was last updated.
StatesStatusobject[]Returns a collection of state transmission status information.
StateCdstringTwo-letter state abbreviation for which the return was transmitted.
StatusCdstringStatus code representing the state transmission status.
StatusstringCurrent transmission status for the specified state.
InfostringAdditional information related to the state transmission status. Returns null if no additional information is available.
StatusTsstringDate and time when the state transmission status was last updated.
DistributionobjectReturns information about the recipient distribution service.
DistributionTypestringSpecifies the distribution method selected for the recipient copy (for example, POSTAL_AND_ONLINE, POSTAL_ONLY, or ONLINE_ONLY).
PostalStatusobjectReturns the postal mailing status information.
PostalTypestringSpecifies the postal delivery service selected for mailing the recipient copy (for example, USPS_FIRST_CLASS).
CodestringStatus code representing the postal distribution status.
StatusstringCurrent status of the postal distribution (for example, ORDER_CREATED, IN_TRANSIT, DELIVERED).
MessagestringAdditional information related to the postal distribution status. Returns null if no additional information is available.
StatusTsstringDate and time when the postal distribution status was last updated.
OnlineAccessStatusobjectReturns the online access status information for the recipient.
EmailstringEmail address to which online access has been provided.
CodestringStatus code representing the online access status.
StatusstringCurrent online access status (for example, ORDER_CREATED, EMAIL_SENT, or VIEWED_FORM).
InfostringAdditional information related to the online access status. Returns null if no additional information is available.
StatusTsstringDate and time when the online access status was last updated.
WebhookRefstringUnique reference identifier associated with the webhook notification for the online access status update.
CreatedTsstring
LastUpdatedTsstring
Request Json
SampleDescriptionAction
Sample 1
Transmit Form 1099 returns using SubmissionId and optional RecordIds.
Sample 1
{
"SubmissionId": "96c3747a-db6d-4d10-aeb2-4daa80516f9e",
"FormACARecords": {
"SuccessRecords": {
"RecordId": "b2d29cf8-ccb1-4c9b-81c2-26c0956ce2f0",
"FormType": "Form1095B",
"FederalStatus": {
"StatusCd": "FED-002",
"Status": "TRANSMITTED",
"Info": "Transmitted to IRS",
"StatusTs": "2026-01-25T09:00:00-05:00"
},
"StatesStatus": [
{
"StateCd": "AZ",
"StatusCd": "ST-002",
"Status": "TRANSMITTED",
"Info": "Transmitted to AZ",
"StatusTs": "2026-01-25T09:01:12-05:00"
}
],
"Distribution": {
"DistributionType": "POSTAL_AND_ONLINE",
"PostalStatus": {
"PostalType": "USPS_FIRST_CLASS",
"Code": "POS-004",
"Status": "HANDED_OVER_TO_USPS",
"Info": "Handed off to USPS",
"StatusTs": "2026-01-26T14:30:00-05:00"
},
"OnlineAccessStatus": {
"Email": "shawn@sample.com",
"Code": "OA-003",
"Status": "EMAIL_SENT",
"Info": "Notification email sent",
"StatusTs": "2026-01-25T09:05:00-05:00"
},
"CreatedTs": "2026-01-02T02:17:04-05:00",
"LastUpdatedTs": "2026-01-26T14:30:00-05:00"
}
},
"ErrorRecords": null
},
"Errors": null
}