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

Get Validated Receipts

POST
/receipts/validated
This endpoint allows you to retrieve a list of claimed receipts.

Request

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

Example
{
    "date_from": "2025-09-01",
    "date_fo": "2025-09-01",
    "type": "claimed"
}

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/receipts/validated' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "date_from": "2025-09-01",
    "date_fo": "2025-09-01",
    "type": "claimed"
}'

Responses

🟢200Success
application/json
Body

Example
[
    {
        "lhdn_uin": "NBRAYK81MTSTWRBXJ1HWXT4J10",
        "reference_number": "INV001",
        "invoice_number": "INV001",
        "status": "Valid",
        "lhdn_validate_url": "https://preprod.myinvois.hasil.gov.my/NBRAYK81MTSTWRBXJ1HWXT4J10/share/299JJPD01ZSGCJAXPM58X41J10D36yRg1719225554",
        "lhdn_validated_at": "2025-06-24 10:39:15+00",
        "long_id": "299JJPD01ZSGCJAXPM58X41J10D36yRg1719225554"
    },
    {
        "lhdn_uin": "XBRAYK81MTSTWRBXF1HWXT4J10",
        "reference_number": "INV002",
        "invoice_number": "INV002",
        "status": "Valid",
        "lhdn_validate_url": "https://preprod.myinvois.hasil.gov.my/XBRAYK81MTSTWRBXF1HWXT4J10/share/409JJPD01ZSGCJAXPM58X41J10D36yRg1719229382",
        "lhdn_validated_at": "2025-06-27 10:39:15+00",
        "long_id": "409JJPD01ZSGCJAXPM58X41J10D36yRg1719229382"
    }
]
Modified at 2025-09-24 03:09:18
Previous
Check Status
Next
Validate Tax Payer
Built with