Login lovbuy.com and get API key in User center->My account(top right)->API
Need API to get product info/search product from taobao,tmall,1688? contact us: jiang@lovbuy.com
Develop with test account: test@qq.com password: 123456
URL | https://www.lovbuy.com/systemapi/getproduct.php |
Request example | https://www.lovbuy.com/systemapi/getproduct.php?key=*&product_id=* |
Request parameter |
key (Required. The API key you can get in user center)
product_id (Required. The product ID in lovbuy.com system, not taobao.com or 1688.com 's product ID)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find this product |
URL | https://www.lovbuy.com/systemapi/getproduct2.php |
Request example | https://www.lovbuy.com/systemapi/getproduct2.php?key=*&product_id[0]=*&product_id[1]=*... |
Request parameter |
key (Required. The API key you can get in user center)
product_id[] (Required. The product ID in lovbuy.com system, not taobao.com or 1688.com 's product ID)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find this product |
URL | https://www.lovbuy.com/systemapi/getorderproducts.php |
Request example | https://www.lovbuy.com/systemapi/getorderproducts.php?key=*&order_id=* |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required.)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find this product |
GET | MAX inlcude 10 products in the order |
URL | https://www.lovbuy.com/systemapi/createorder.php |
Request example | https://www.lovbuy.com/systemapi/createorder.php?key=*&order_note=*your_order_id=*&is_ship=*&ship_id=*&recipient=*&company=*&street=*&city=*&state=*&country_code=*&zipcode=*&phone=*& your_product_id[0]=*&price[0]=*&qty[0]=*&local_ship_fee[0]=*&store[0]=*&product_note[0]=*&title[0]=*&link[0]=*&imglink[0]=*&your_product_id[1]=*&price[1]=*&qty[1]=*&local_ship_fee[1]=*&store[1]=*&product_note[1]=*&title[1]=*&link[1]=*&imglink[1]=*...&declare_name_en[0]=*&declare_name_cn[0]=*&declare_qty[0]=*&declare_value[0]=*&declare_name_en[1]=*&declare_name_cn[1]=*&declare_qty[1]=*&declare_value[1]=*... |
POST | MAX inlcude 500 products in the order |
URL | https://www.lovbuy.com/systemapi/createorder2.php |
Request example |
https://www.lovbuy.com/systemapi/createorder2.php |
Request parameter |
key (Required. The API key you can get in user center)
order_note (Optional. make some special instruction for this order)
your_order_id (Optional. Order ID of your own website)
is_ship (Optional.
1 - Ship immediately when this order is ready, if your balance is not enough for international shipping fee or the shipping method you are filling is not support will make the auto shipping fail, 2 - not immediately when this order is ready,) ship_id (Required, The ID of shipping way, such as 1 (mean DHL). The shipping way list is shown below)
recipient (Required)
company (Optional)
street (Required)
city (Required)
state (Required)
country_code (Required, Such as "United state"-> "US" The country ISO code list is shown at the bottom)
zipcode (Required)
phone (Required)
your_product_id[] (Optional, Product ID of your own system)
price[] (Required. The unit price of this product, During our buying , if the price is lower than real price, we will charge more from your balance, if your price is higher, we will refund the difference to your balance)
qty[] (Required. The quantity you'd like to buy this product)
local_ship_fee[] (Required. Local shipping fee from seller to our warehouse, if the fee is lower than real cost, we will charge more from your balance, if your fee is higher, we will refund the difference to your balance)
store[] (Optional. The store name where this product from)
product_note[] (Optional. Note for product, usually fill color, size...)
title[] (Optional. title of the product)
link[] (Required. The product URL you want to buy. )
imglink[] (Optional. The cover image in each product row. )
declare_name_en[] (Optional. The English name for custom declaration)
declare_name_cn[] (Optional. miss this reference, this list of declared data still work. The Chinese name for custom declaration)
declare_qty[] (Optional. The quantity of the product for custom declaration)
declare_value[] (Optional. $ USD The unit value of the product for custom declaration)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":510} -- Balance is not enough {"status":533} -- Can not find the country code |
GET | MAX insert 10 products at a tme |
URL | https://www.lovbuy.com/systemapi/insertproducts.php |
Request example | https://www.lovbuy.com/systemapi/insertproducts.php?key=*&order_id=*& your_product_id[0]=*&price[0]=*&qty[0]=*&local_ship_fee[0]=*&store[0]=*&product_note[0]=*&title[0]=*&link[0]=*&imglink[0]=*& your_product_id[1]=*&price[1]=*&qty[1]=*&local_ship_fee[1]=*&store[1]=*&product_note[1]=*&title[1]=*&link[1]=*&imglink[1]=*... |
POST | MAX insert 500 products at a tme |
URL | https://www.lovbuy.com/systemapi/insertproducts2.php |
Request example |
https://www.lovbuy.com/systemapi/insertproducts2.php |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required. )
your_product_id[] (Optional, product ID of your own system)
price[] (Required. The unit price of this product, During our buying , if the price is lower than real price, we will charge more from your balance, if your price is higher, we will refund the difference to your balance)
qty[] (Required. The quantity you'd like to buy this product)
local_ship_fee[] (Required. Local shipping fee from seller to our warehouse, if the fee is lower than real cost, we will charge more from your balance, if your fee is higher, we will refund the difference to your balance)
store[] (Optional. The store name where this product from)
product_note[] (Optional. Note for product, usually fill color, size...)
title[] (Optional. title of the product)
link[] (Required. The product URL you want to buy. Make sure use url encode it before putting it here)
imglink[] (Optional. The cover image in each product row. Make sure use url encode it before putting it here)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":510} -- Balance is not enough |
URL | https://www.lovbuy.com/systemapi/setcustom.php |
Request example | https://www.lovbuy.com/systemapi/setcustom.php?key=*&order_id=*&name_en[0]=*&name_cn[0]=*&qty[0]=*&value[0]=*&name_en[1]=*&name_cn[1]=*&qty[1]=*&value[1]=*... |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required. )
name_en[] (Required. Declared name for custom in English)
name_cn[] (Optional. Declared name for custom in Chinese)
qty[] (Required. Declare quantity for custom)
value[] (Required.$ USD Declared Value for one unit/pcs )
|
Success return example | "declare_name_en": "test1", "declare_name_cn": "0", "declare_qty": "5", "declare_value": "11.00" |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":515} -- Cannot find suitable order |
URL | https://www.lovbuy.com/systemapi/editorder.php |
Request example By POST |
https://www.lovbuy.com/systemapi/editorder.php |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required. Order ID of in lovbuy system)
order_note (Optional. make some special instruction for this order)
your_order_id (Optional. Order ID of your own website)
is_ship (Optional.
1 - Ship immediately when this order is ready, if your balance is not enough for international shipping fee or the shipping method you are filling is not support will make the auto shipping fail, 2 - not immediately when this order is ready, if the order status is ready to ship, it will not auto ship even you change to 1 now) ship_id (Optional, The ID of shipping way, such as 1 (mean DHL). The shipping way list is shown below)
recipient (Optional)
company (Optional)
street (Optional)
city (Optional)
state (Optional)
country_code (Optional, Such as "United state"-> "US" The country ISO code list is shown at the bottom)
zipcode (Optional)
phone (Optional)
declare_name_en[] (Optional. The English name for custom declaration)
declare_name_cn[] (Optional. miss this reference, this list of declared data still work. The Chinese name for custom declaration)
declare_qty[] (Optional. The quantity of the product for custom declaration)
declare_value[] (Optional. $ USD ,The unit value of the product for custom declaration)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":512} -- Order status must <=40 , still not submit to ship; {"status":515} -- Cannot find suitable order {"status":533} -- Cannot find country code |
GET | |
URL | https://www.lovbuy.com/systemapi/shiporder.php |
Request example | https://www.lovbuy.com/systemapi/shiporder.php?key=*order_id=*&ship_id=*&recipient=*&company=*&street=*&city=*&state=*&country_code=*&zipcode=*&phone=*&declare_name_en[0]=*&declare_name_cn[0]=*&declare_qty[0]=*&declare_value[0]=*&declare_name_en[1]=*&declare_name_cn[1]=*&declare_qty[1]=*&declare_value[1]=*... |
POST | |
URL | https://www.lovbuy.com/systemapi/shiporder2.php |
Request example |
https://www.lovbuy.com/systemapi/shiporder2.php |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required.)
ship_id (Required, The ID of shipping way. The shipping way list is shown below . System API appendices->shipping method)
recipient (Required)
company (Optional)
street (Required)
city (Required)
state (Required)
country_code (Required, Such as "United state"-> "US" The country ISO code list is shown at System API appendices->country)
zipcode (Required)
phone (Required)
custom_declare (Optional. If you fill this data, previous custom declaration data for this order will be all removed and replaced with this data. )
declare_name_en[] (Optional. The English name for custom declaration)
declare_name_cn[] (Optional. The Chinese name for custom declaration)
declare_qty[] (Optional. The quantity of the product for custom declaration)
declare_value[] (Optional. $ USD , The unit value of the product for custom declaration)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":510} -- Balance is not enough {"status":522} -- Cannot find this order {"status":530} -- The shipping method you request do not support the country or the weight range {"status":533} -- Can not find the country code |
URL | https://www.lovbuy.com/systemapi/markreceived.php |
Request example | https://www.lovbuy.com/systemapi/markreceived.php?key=*&order_id=* |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required.)
|
Success return example | { "status": 200, "order_id": 1435, "st": 70 } |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/requestreturn.php |
Request example | https://www.lovbuy.com/systemapi/requestreturn.php?key=*&product_id=* |
Request parameter |
key (Required. The API key you can get in user center)
product_id (Required.)
|
Success return example | { "status": 200, "product_id": 12323, "st": 27 } |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/requestexchange.php |
Request example | https://www.lovbuy.com/systemapi/requestexchange.php?key=*&product_id=* |
Request parameter |
key (Required. The API key you can get in user center)
product_id (Required.)
|
Success return example | { "status": 200, "productid": 12323, "st": 23 } |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/getorder.php |
Request example | https://www.lovbuy.com/systemapi/getorder.php?key=*&order_id=* |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required.)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find order |
URL | https://www.lovbuy.com/systemapi/getorder2.php |
Request example | https://www.lovbuy.com/systemapi/getorder2.php?key=*&order_id[0]=*&order_id[1]=*... |
Request parameter |
key (Required. The API key you can get in user center)
order_id[] (Required.)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find order |
URL | https://www.lovbuy.com/systemapi/getshiptrack.php |
Request example | http://www.lovbuy.com/systemapi/getshiptrack.php?key=*&order_id=12281 |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required.)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find order {"status":536} -- tracking info still not ready {"status":538} -- fail to connect tracking data |
URL | https://www.lovbuy.com/systemapi/getshiptrackno.php |
Request example | http://www.lovbuy.com/systemapi/getshiptrackno.php?key=*&order_id=12281 |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required.)
|
Note | So far, only tracking number format like 3000230681625CN OR shipping way like: Hongkong-Fedex, Hongkong-DHL, Hongkong-UPS support to get local tracking number. The local tracking number depend on country, If ship to USA, it's USPS tacking number |
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find order {"status":551} -- No support to get local tracking number for this order {"status":561 - 569 } -- fail to get {"status":580} -- Still pending, try again tomorrow |
URL | https://www.lovbuy.com/systemapi/getorders.php |
Request example | https://www.lovbuy.com/systemapi/getorders.php?key=*&st=* |
Request parameter |
key (Required. The API key you can get in user center)
st (Required. status of the order,20-buying, 40-All products arrive and Ready to ship, 50-You have paid internationals shipping cost and submitted to ship, 60- Shipped, 70- received)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find order |
URL | https://www.lovbuy.com/systemapi/getordership.php |
Request example | https://www.lovbuy.com/systemapi/getordership.php?key=*&order_id=*&country_code=* |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required. The ID of order you want to check)
country_code (Required. The country that this order is shipping to)
|
Note | Get all the available shipping method of an order.This order must be packed and have weight in it |
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":522} -- Cannot find this order {"status":530} -- The shipping method you request do not support the country or the weight range {"status":533} -- Can not find the country code |
URL | https://www.lovbuy.com/systemapi/getship.php |
Request example | https://www.lovbuy.com/systemapi/getship.php?key=*&country_code=*&weight=*&lenght=*&width=*&height=*product_type=* |
Request parameter |
key (Required. The API key you can get in user center)
country_code (Required. The country that this order is shipping to)
weight (Required. Weight /g )
lenght (Optional. Lenth cm )
width (Optional. Width cm )
height (Optional. Height cm )
product_type (Optional. Default is 1; 1-normal product, 2-brand product, 3-famous brand product, 4-with battery/magnetic, 5-pure battery, 6-liquid or powder)
|
Note | Get shipping fee normally by weight and size |
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find order {"status":530} -- The shipping method you request do not support the country or the weight range {"status":533} -- Can not find the country code |
URL | https://www.lovbuy.com/systemapi/getship2.php |
Request example | https://www.lovbuy.com/systemapi/getship2.php?key=138e8b978e5949571e94011a63748fdd&product_type=1&country_code=US&weight[0]=10000&length[0]=10&&width[0]=20&&height[0]=30&weight[1]=20000&length[1]=20&&width[1]=30&&height[1]=40 |
Request parameter |
key (Required. The API key you can get in user center)
country_code (Required. The country that this order is shipping to)
weight[] (Required. Weight /g )
lenght[] (Required. Lenth cm )
width[] (Required. Width cm )
height[] (Required. Height cm )
product_type (Optional. Default is 1; 1-normal product, 2-brand product, 3-famous brand product, 4-with battery/magnetic, 5-pure battery, 6-liquid or powder)
|
Note | Get shipping fee normally by weight and size if many cartons in one order |
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter {"status":508} -- Cannot find order {"status":530} -- The shipping method you request do not support the country or the weight range {"status":533} -- Can not find the country code |
URL | https://www.lovbuy.com/systemapi/getshiprate.php |
Request example | https://www.lovbuy.com/systemapi/getshiprate.php?key=* |
Request parameter |
key (Required. The API key you can get in user center)
|
Note |
This is all the orginal shipping rate data from our SQL database You can save in your own database, and get any shipping cost from your own server. We don't usually change the data, so you update it over 30 days a time should be OK. But it's not easy to understand how to calculate |
Reference | |
PHP Example code to calculate a shipping cost |
|
PHP Example code to calculate a list shipping quote for all available shipping method |
URL | https://www.lovbuy.com/systemapi/sendormessage.php |
Request example | https://www.lovbuy.com/systemapi/sendormessage.php?key=*&order_id=*&message=* |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required. The order ID which this message belong to)
message (Required. Content of the message to remind something of this order to our worker )
|
Success return example | {"status":200 "order_message_id":6456, "content":"test message" } |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/sendprmessage.php |
Request example | https://www.lovbuy.com/systemapi/sendprmessage.php?key=*&product_id=*&message=* |
Request parameter |
key (Required. The API key you can get in user center)
product_id (Required. The product ID which this message belong to)
message (Required. Content of the message to remind something of this order to our worker )
|
Success return example | {"status":200, "product_message_id":6456, "content":"test message" } |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/readormessage.php |
Request example | https://www.lovbuy.com/systemapi/readormessage.php?key=*&order_id=* |
Request parameter |
key (Required. The API key you can get in user center)
order_id (Required. The product ID which this message belong to)
message (Required. Content of the message to remind something of this order to our worker )
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/readprmessage.php |
Request example | https://www.lovbuy.com/systemapi/readprmessage.php?key=*&product_id=* |
Request parameter |
key (Required. The API key you can get in user center)
product_id (Required. The product ID which this message belong to)
message (Required. Content of the message to remind something of this order to our worker )
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/addticket.php |
Request example | https://www.lovbuy.com/systemapi/addticket.php?key=*&title=*&kind=* |
Request parameter |
key (Required. The API key you can get in user center)
title (Required. Title of this ticket, also will be as the first message of this ticket)
kind (Required. 1=account&secure, 2=payment&finance, 3=shipping&tracking, 4=warehouse operation, 5=Complaint, 6=others)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/readticketmessage.php |
Request example | https://www.lovbuy.com/systemapi/readticketmessage.php?ticket_id=* |
Request parameter |
key (Required. The API key you can get in user center)
ticket_id (Required. ID of the ticket)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/sendticketmessage.php |
Request example | https://www.lovbuy.com/systemapi/sendticketmessage.php?ticket_id=*&message=* |
Request parameter |
key (Required. The API key you can get in user center)
ticket_id (Required. ID of the ticket)
message (Required. The message that you want to send)
|
Success return example | {"status":200,"ticket_message_id":"5213","content":"OK test"} |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
URL | https://www.lovbuy.com/systemapi/getbillrecord.php |
Request example | https://www.lovbuy.com/systemapi/getbillrecord.php?key=*&time1=*&time2=* |
Request parameter |
key (Required. The API key you can get in user center)
time1 (Required, Unix timestamp, from time range time1-time2)
time2 (Required, Unix timestamp, from time range time1-time2)
|
Success return example | |
Fail return example |
{"status":500} -- Other error
{"status":501} -- API key is not correct {"status":505} -- Miss required parameter |
bill_type |
2- paypal, 14 credit card, 19-Manual Recharge, 20-Shipping fee adjust, 21- Shipping fee payment...
Here is the array for all type in javascript: |
Webhook for lovbuy.com |
You can set webhook notice when your product, order, message change, Go to user center-> account -> API to set webhook
Only those order that create by API can receive webhook notice Notice will send but only send 1 time, so we cannot make sure you will receive all notice 100% successfully Return "200" after you receive the webhook notice |
product change notice example | |
order change notice example | |
product message notice example | |
order message notice example | |
Ticket message notice example |
product_id | ID of product in our system |
order_id | An order may inlcude many products. This is the order ID that this product belong to |
st |
Status of this product.
0-pending, 20-Buying, 21-On the way, 22-Arrive at our warehouse,23-Request exchange,24-We confirm exchange ,25-exchanging 26-exchanged.,27-request return,28-We confirm return,29-Returned, 30-No stock/not available, 50-Submit to ship out from our warehouse, 60-Shipped out from our warehouse, 70-Customer received |
time1 | The time that this product created in our system |
time2 | Time that the product arrive at our warehouse |
time3 | The time that we buy this product |
time4 | The time that customer submit to ship out from our warehouse |
title | Title of the product |
price | Price of the product for one unit |
qty | Quantity of the product |
local_ship_fee | Local shipping cost of the product / shipping cost from seller to our warehouse |
link | The URL link of the orginal product |
imglink | The URL link of the picture of the orginal product |
store | The store name that this product belong to |
product_note | Note, requirements for the product |
your_product_id | Product ID of your own system, it's define by yourself |
order_id | ID of the order(waybill/shipment) in our system |
time1 | Time that when this order is created in our system |
time3 | Time that order finish collecting and we finish packing and entering the weight,size data to system |
time4 | Time that this order finish collecting/all products of this order arrive at our warehouse |
time5 | Time that customer submit to ship this order |
time6 | Time that we shipped this order |
st | 20-Buying, 40-order finish collecting, 50-Customer submit to ship, 60-We shipped, 70-Customer received |
weight | Final weight of this order after packaging |
Length | Final size of this order after packaging |
width | Final size of this order after packaging |
height | Final size of this order after packaging |
products_amount | Total product cost + local shipping fee in this order |
commission | our service fee for buying |
ship_fee | Shipping cost that ship out from our warehouse, Usually is international shipping |
zipcode | part of the shipping address |
ship_id | Shipping method ID |
product_type | 1-normal product, 2-brand product, 3-famous brand product, 4-with battery/magnetic, 5-pure battery, 6-liquid or powder |
track_number | Tracking number of this order when we ship out from our warehouse |
recipient | part of the shipping address |
company | part of the shipping address |
street | part of the shipping address |
city | part of the shipping address |
state | part of the shipping address |
zipcode | part of the shipping address |
phone | part of the shipping address |
order_note | Note for the order |
is_ship | 1-Auto submit to ship when this order finish collecting. 0- Not auto submit to ship |
your_order_id | Order ID of your own system, it's defined by yourself |
bill_id | ID of this row |
bill_type |
2- paypal, 14 credit card, 19-Manual Recharge, 20-Waybill Fee Adjust, 21- Pay fulfillment shipping cost...
Here is the array for all type in javascript: |
note | Note for this record |
amount | The amount that changed in this row |
balance | The remain balance after this change |
time | Time when this operation happen |