API Authentication
The Bell Express API uses Bearer token authentication for every request.
Get an API token
Go to the Preferences page at https://express.bellvn.com/preferences and open the Token list tab to create or copy a token.
danger
Do not share your API token with anyone who is not authorized to use it. A leaked token can give others unauthorized access to your data.
Authorization header
Header format:
Authorization: Bearer <your_token>
Example request:
curl --location 'https://expressbe.bellvn.com/api/order/create-order' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer xxxxxx' \
--data '{
"address_id": 2,
"consignee_name": "sarenda mcguire",
"consignee_phone": "",
"consignee_address": "6105 W Elmwood Dr",
"consignee_address_other": "",
"consignee_country": "US",
"consignee_city": "Wildomar",
"consignee_postal_code": "57718",
"consignee_state_code": "SD",
"order_number": "DEV112222216",
"product_name": "Metal",
"product_price": 5.5,
"length": 1.93,
"width": 108,
"height": 1.9,
"weight": 1.1,
"service_code": "EPK",
"service_add": "",
"money_collection": 0
}'