BeaconX e-Invoice API
  1. B2B e-Invoicing
BeaconX e-Invoice API
  • BeaconX e-Invoice API Documentation
  • API Endpoints
    • B2B e-Invoicing
      • Create Document(s)
        POST
      • Cancel Document
        POST
      • Void Document
        POST
      • Unvoid Document
        POST
      • Create Invoice from Receipt
        POST
      • Check Status
        POST
      • Embed QR Code
        POST
      • Invoice Reversal
        POST
      • Update Reference Number
        POST
    • B2C Receipt
      • Retrieve Receipt
      • Search Receipts
      • Create a Receipt
      • Update existing Receipt
      • Void a Receipt
      • Void Multiple Receipts
      • UnVoid a Receipt
      • Send a Receipt (Email / WhatsApp)
      • Download Receipts Report
      • Create Multiple Receipts (Bulk)
      • Receipt Reversal
      • Update Reference Number
      • Check Status
    • TaxPayer
      • Validate Tax Payer
      • Sync Tax Payer Master List
      • Identity
      • Validate SSM
      • Search TIN
    • Lists
      • Get list of all Classification Codes
  1. B2B e-Invoicing

Check Status

POST
/einvoices/status
This API endpoint returns status of documents with full details of each document. Each attribute adds on as an AND filter to the condition.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
    "reference_number": [
        "0101B2B01400",
        "123457"
    ],
    "outlet_code": [
        "A001",
        "B002"
    ],
    "direction": "received",
    "tax_payer_code": [
        "SUP001", "SUP010", "SUP099"
    ],
    "date_from": "2024-06-01",
    "date_to": "2024-06-14",
    "source": ["iserve"]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://einvoice-api.beaconx.com.my/einvoices/status' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "reference_number": [
        "0101B2B01400",
        "123457"
    ],
    "outlet_code": [
        "A001",
        "B002"
    ],
    "direction": "received",
    "tax_payer_code": [
        "SUP001", "SUP010", "SUP099"
    ],
    "date_from": "2024-06-01",
    "date_to": "2024-06-14",
    "source": ["iserve"]
}'

Responses

🟢200Success
application/json
Body

Examples
{
    "status": "OK",
    "message": "",
    "data": [
        {
            "reference_number": "INV1234",
            "status": "valid",
            "lhdn_uin": "42S512YACQBRSRHYKBXBTGQG22",
            "lhdn_long_id": "YQH73576FY9VR57B",
            "lhdn_validated_at": "2015-02-13T14:20:00Z",
            "lhdn_validation_url": "https://preprod.myinvois.hasil.gov.my/42S512YACQBRSRHYKBXBTGQG22/share/YQH73576FY9VR57B",
            "email_notified_at": "2015-02-13T14:20:00Z",
            "message": [
                ""
            ]
        }
    ]
}
Modified at 2025-09-10 16:59:38
Previous
Create Invoice from Receipt
Next
Embed QR Code
Built with