Transmit
POST Form8809/Transmit
Request Body
Field | Type | Description |
---|---|---|
SubmissionId | Guid | Unique identifier of a submission |
Request JSON
{
"SubmissionId": "e88e7f1d-7ae5-43b6-99f6-38d85664035a",
}
Response Body
Field | Type | Description |
---|---|---|
StatusCode | number | Returns the HTTP status codes like 200,300 etc. |
StatusName | string | Name of the status code |
StatusMessage | string | Detailed status message |
SubmissionId | Guid | Unique identifier of a submission |
BusinessId | Guid | Unique identifier of the business |
PayerRef | string | Unique identifier of the payer. |
Form8809Status | string | Returns the 8809 status. |
StatusTs | string | Returns the date and time of the status last updated. |
Errors | object[] | Shows detailed error information |
Id | string | Returns the validation error code |
Name | string | Name of the validation error |
Message | string | Description of the validation error |
Response JSON
Success Response - This is a sample response for successful API requests.
{
"StatusCode": 200,
"StatusName": "Ok",
"StatusMessage": "Successful API call",
"SubmissionId": "e88e7f1d-7ae5-43b6-99f6-38d85664035a",
"BusinessId": "c21df64f-9a6d-4e21-ac67-723aacf1ba48",
"PayerRef": "Pe123",
"Form8809Status": "TRANSMITTED",
"StatusTs": "2022-08-06 10:19:05 -04:00",
"Errors": null,
}