Skip to main content
Version: 1.7.3

RequestPostalByRecordId

Use this endpoint to enable postal mailing for 1099 / W2 forms that have already been transmitted to the IRS. Your request must contain the ‘RecordId’ of the transmitted forms.

POST Utility/RequestPostalByRecordId 

Request Body

FieldTypeDescription
RecordIdsobject[]Contains the object of RecordId.
Note: Postal order cannot be completed for returns that have not been transmitted

Request JSON

{
"RecordIds": [
"31ea464a-ff03-46db-92ce-14e355a132bb"
]
}

Response Body

FieldTypeDescription
TotalRecordsstringReturns the count of total records.
TotalSuccessstringReturns the count of success records.
TotalErrorsstringReturns the count of error records.
SuccessRecordsobject[]Shows information about success records.
   RecordIdGuidUnique identifier of a record.
   StatusstringReturns status of the postal mailing status.
   StatusTsstringReturns the date and time of the postal order created.
   InfostringReturns the information about Postal mailing service.
ErrorRecordsobject[]Shows information about error records.
   RecordIdGuidUnique identifier of a record.
   StatusstringReturns status of the postal mailing status.
   StatusTsstringReturns the date and time of the postal mailing status.
Note: By default StatusTs will be null for records listed in ErrorRecords object
   InfostringReturns the information about the record for which we are not postal mailing service.
Errorsobject[]Shows detailed error information.
   IdstringReturns the validation error Id.
   NamestringName of the validation error.
   MessagestringDescription of the validation error.

Response JSON

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

{
"TotalRecords": "1",
"TotalSuccess": "1",
"TotalErrors": "0",
"SuccessRecords": [
{
"RecordId": "31ea464a-ff03-46db-92ce-14e355a132bb",
"Status": "Order Created",
"StatusTs": "2024-11-11 02:13:12 -05:00",
"Info": "Postal Order has been created"
}
],
"ErrorRecords": null,
"Errors": null
}