Skip to content

acquire_payment_history

yangxing edited this page Jan 16, 2020 · 3 revisions

Acquire Payment History

name type required description
coin string yes coin type
start_date string no start date,such as 2019-01-24
end_date string no end date
utc bool no true/false, default: false
page int no page number
limit int no return amount, default: 50
{
  "code": 0,
  "count": 2,
  "curr_page": 1,
  "data":[
    {
      "id": 157,
      "coin": "BTC",
      "amount": "0.001",
      "address": "mtRJjPJGVLGs5YDf4VUP5RQXipzHjnjeCe",
      "tx": "eaa0597e556ceda83ffe5d3533a4aba93b49e7dbb2fa35895dd08754fb9d62d0",
      "create_time": 1530704756
    },
    {
      "id": 266,
      "coin": "BTC",
      "amount": "0.001",
      "address": "qr0xs7rk2ku4rkg4kpayvcet3pvw7zcceszsaflkzs",
      "tx": "00802e7d6acf262c9afda8882dc361c705f224985c074f62e57942af9beae8b9",
      "create_time": 1530704757
    },
  ],
  "has_next": false,
  "total": 2,
  "total_page": 1
  "message": "OK"
}