Transmit Invoice
Trigger the eTranzact transmit call for a supplied IRN.
Endpoint
POST /api/v1/nrs/transmit
Request Body
{
"irn": "INV000049-F6B4C898-20260327"
}
Response
{
"endpoint": "string",
"status_code": 0,
"ok": true,
"timestamp": "string",
"attempts": 1,
"retried": false,
"request_payload": {
"additionalProp1": {}
},
"response_body": "string"
}
Status Codes
| Code | Description |
|---|---|
| 200 | Transmit request completed |
| 400 | Validation or upstream request error |
| 422 | Validation error |
| 500 | Local proxy failure |
Validation Error Example
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string",
"input": "string",
"ctx": {}
}
]
}
Server Error Example
{
"endpoint": "string",
"status_code": 0,
"ok": false,
"error": "string"
}
Notes
irnmust reference an existing generated invoice.- The transmit request is forwarded to eTranzact.
- Validation errors are returned for invalid or missing IRNs.
- A successful response indicates the invoice transmission process was initiated.