Confirm Invoice transmission

POST https://api.beelpoint.com/v1/api/invoices/:irn/confirm

Headers

Name
Type
Description

authorization*

String

API Secret Key

Request Body

Field
Type
Description

irn

String

Invoice Reference Number (IRN) of the invoice to be confirmed.

{
    "irn": "INV00XXX-3D97BAOA-20240917"
}
{
  "success": true,
  "status_code": 200,
  "message": "Invoice confirmed successfully!",
  "data": {
     "confirmation": { ok: true }
  }
}
{
  "success": false,
  "statusCode": 404,
  "message": "You have attempted to get a resource that does not exist.",
  "name": "ResourceNotFoundError",
  "data": {}
}

Last updated