AccessTrade.vn
  • TÀI LIỆU API HƯỚNG DẪN PUBLISHER
  • API DÀNH CHO PUBLISHER BẢN TIẾNG VIỆT
    • Authentication
    • Lấy danh sách campaigns
    • Tạo tracking link
    • Lấy danh sách giao dịch
    • Lấy danh sách đơn hàng v2
    • Lấy thông tin sản phẩm của đơn hàng
    • Lấy thông tin chi tiết sản phẩm
    • Lấy thông tin datafeeds
    • Lấy thông tin vouchers / coupons / deals
      • Hướng dẫn lấy mã nhúng danh sách khuyến mãi lên website
      • [Wordpress] Hướng dẫn nhúng vào bài post
      • [Wordpress] Hướng dẫn tạo 1 trang riêng nhúng code
      • API - Lấy danh sách thông tin khuyến mại theo nhà cung cấp & ngành hàng.
    • Lấy thông tin các khuyến mại đang hoạt động
    • Top các sản phẩm bán chạy nhất
    • Errors
  • API PUBLISHER ENGLISH VERSION
    • Authentication
    • Get the campaigns list
    • Create tracking link
    • Get the list of commission ratio of campaign
    • Get the list of transaction
    • Get the list of order v2
    • Get products information of the order
    • Get detailed information of the product
    • Get Datafeeds information
    • Get promotional information
    • Top selling products
    • Errors
    • Get detailed information of the order
Powered by GitBook
On this page

Was this helpful?

  1. API PUBLISHER ENGLISH VERSION

Get the list of order v2

Method: GET

HTTP Request

https://api.accesstrade.vn/v1/order-list

Note:

  • Limit: 10 requests / 1 minute

  • Cache 1 minute

Query Parameters

The parameters are passed into HTTP Request according to Key-Value pairs, begin the parameters with the sign “?” and separate the parameters with the sign “&”. Ex:

https://api.accesstrade.vn/v1/order-list?since=2021-01-01T00:00:00Z&until=2021-01-10T00:00:00Z

Parameters

Required

Description

since

Required

Time the report begins, according to ISO format, example “2019-08-01T00:00:00Z”

until

Required

Time the report ends, according to ISO format, example “2019-08-01T00:00:00Z”

utm_source

Optional

Ex: facebook

utm_campaign

Optional

utm_medium

Optional

Ex: email

utm_content

Optional

page

Optional

Page order. Starting from 1. Default 1

limit

Optional

Number of orders returned per page. Default 30. Up to 300 (if you fill in more than 300, default set to 300)

status

Optional

Conversion status

  • 0: Pending or hold

  • 1: Approved

  • 2: Rejected

merchant

Optional

Example: adayroi, lazada

RESPONSE

{
"data": 
    [
       {
           "at_product_link": "https://shopee.vn/universal-link/product/214196144/17730719201?utm_campaign=&c=679&af_reengagement_window=7d&af_click_lookback=7d&smtt=0.549607455-1653894909.9&utm_content=XDbU5H4Qjy87NtFmlCNrsEo4jtBMzjvPRv3EON3JTvinCYXR-540355-679-IG-&af_siteid=an_17156540000&pid=affiliates&utm_source=an_17156540000&is_retargeting=true&referer=at-kol-new&af_sub_siteid=540355&utm_medium=affiliates&af_viewthrough_lookback=1d&atnct1=ca9c267dad0305d1a6308d2a0cf1c39c&atnct2=XDbU5H4Qjy87NtFmlCNrsEo4jtBMzjvPRv3EON3JTvinCYXR&atnct3=h50RJ00079r00bkxv",
           "billing": 69000.0,
           "browser": "Mobile Safari UI/WKWebView",
           "category_name": "Fashion_Accessories",
           "click_time": "2022-05-31T00:28:09",
           "client_platform": "mobile",
           "confirmed_time": "2022-07-01T23:59:31",
           "conversion_platform": null,
           "customer_type": null,
           "is_confirmed": 0,
           "landing_page": "https://www.instagram.com/",
           "merchant": "shopee_kolnew",
           "order_id": "220602QAVKQKCM",
           "order_pending": 0,
           "order_reject": 0,
           "order_approved": 1,
           "product_category": "Phu_Kien_Thoi_Trang",
           "products_count": 1,
           "pub_commission": 2208.0,
           "sales_time": "2022-06-01T23:59:31",
           "update_time": "2022-07-07T10:23:13",
           "utm_campaign": null,
           "utm_content": null,
           "utm_medium": null,
           "utm_source": "IG",
           "website": "https://www.instagram.com/",
           "website_url": "https://www.instagram.com/"
       }
   ],
   "total": 589
}

Describe results

Parametters
Description

data.at_product_link

Product tracking link

data.billing

Order value

data.browser

Order generation platform

data.category_name

Category name

data.click_time

Click time

data.client_platform

Client Platform

data.confirmed_time

Confirmed time

data.conversion_platform

Conversion platform

data.customer_type

Customer type

data.is_confirmed

Transaction for control approval status: 0 - unapproved 1 - approved

data.landing_page

Landing page

data.merchant

Merchant name

data.order_id

Order ID

data.order_pending

Number of orders in pending

data.order_reject

Number of orders in rejected

data.order_approved

Number of orders in approved

data.product_category

Category of the product

data.products_count

Total number of products

data.pub_commission

Commission for publishers

data.sales_time

Sales time

data.update_time

Update time

data.utm_campaign

Utm campaign

data.utm_content

Utm content

data.utm_medium

Utm medium

data.utm_source

Utm source

data.website

Website

data.website_url

Website url

PreviousGet the list of transactionNextGet products information of the order

Last updated 5 months ago

Was this helpful?