BeaconX e-Invoice API
  1. TaxPayer
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
      • 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
        POST
      • Sync Tax Payer Master List
        POST
      • Identity
        GET
      • Validate SSM
        POST
      • Search TIN
        GET
    • Lists
      • Get list of all Classification Codes
  1. TaxPayer

Sync Tax Payer Master List

Developing
POST
/taxpayers/sync

Request

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

Example
[
    {
        "code": "",
        "type": "supplier",
        "action": "sync",
        "id_type": "BRN",
        "tin": "C61901366810",
        "id_number1": "201903007118",
        "id_number2": "",
        "name": "MEDHURST, GRIMES AND SIPES SDN. BHD.",
        "email": "kendall.purdy@reilly.net",
        "address1": "72684 Murl Light Apt. 668",
        "address2": "",
        "address3": "",
        "city": "Lake Tedfort",
        "postcode": "29311",
        "state": "01",
        "country": "MYS",
        "sst_number": "W10-1060-26389071",
        "tourism_tax_number", "",
        "phone": "0125168978",
        "membership_id": "",
        "is_foreign": "false",
        "is_supplier": "1",
        "is_buyer": "",
        "is_shipping": ""
    }
]

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/taxpayers/sync' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "code": "",
        "type": "supplier",
        "action": "sync",
        "id_type": "BRN",
        "tin": "C61901366810",
        "id_number1": "201903007118",
        "id_number2": "",
        "name": "MEDHURST, GRIMES AND SIPES SDN. BHD.",
        "email": "kendall.purdy@reilly.net",
        "address1": "72684 Murl Light Apt. 668",
        "address2": "",
        "address3": "",
        "city": "Lake Tedfort",
        "postcode": "29311",
        "state": "01",
        "country": "MYS",
        "sst_number": "W10-1060-26389071",
        "tourism_tax_number", "",
        "phone": "0125168978",
        "membership_id": "",
        "is_foreign": "false",
        "is_supplier": "1",
        "is_buyer": "",
        "is_shipping": ""
    }
]'

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2024-06-09 19:47:19
Previous
Validate Tax Payer
Next
Identity
Built with