- BeaconX e-Invoice API Documentation
- API Endpoints
- B2B e-Invoicing
- B2C Receipt
- TaxPayer
- Lists
- Articles
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
array of:
type
string
optional
action
string
optional
code
string
optional
id_type
string
optional
tin
string
optional
id_number
string
optional
name
string
optional
email
string
optional
address1
string
optional
address2
string
optional
address3
string
optional
city
string
optional
postcode
string
optional
state
string
optional
01 Johor
02 Kedah
03 Kelantan
04 Melaka
05 Negeri Sembilan
06 Pahang
07 Pulau Pinang
08 Perak
09 Perlis
10 Selangor
11 Terengganu
12 Sabah
13 Sarawak
14 Wilayah Persekutuan Kuala Lumpur
15 Wilayah Persekutuan Labuan
16 Wilayah Persekutuan Putrajaya
17 Not Applicable
country
string
optional
sst_number
string
optional
phone
string
optional
membership_id
string
optional
is_foreign
string
optional
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 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 '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
object {0}
Example
{}
Modified at 2024-06-09 19:47:19