Skip to main content

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

CodeDescription
200Transmit request completed
400Validation or upstream request error
422Validation error
500Local 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

  • irn must 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.