POST
/
merchant
/
metric
/
list
curl --request POST \
  --url https://api.unibee.top/merchant/metric/list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "count": 123,
  "createTimeEnd": 123,
  "createTimeStart": 123,
  "page": 123,
  "sortField": "<string>",
  "sortType": "<string>"
}'
{
  "code": 123,
  "data": {
    "merchantMetrics": [
      {
        "aggregationProperty": "<string>",
        "aggregationType": 123,
        "code": "<string>",
        "createTime": 123,
        "gmtModify": 123,
        "id": 123,
        "merchantId": 123,
        "metricDescription": "<string>",
        "metricName": "<string>",
        "type": 123
      }
    ],
    "total": 123
  },
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
count
integer

Count OF Page

createTimeEnd
integer

CreateTimeEnd

createTimeStart
integer

CreateTimeStart

page
integer

Page,Start 0

sortField
string

Sort,user_id|gmt_create,Default gmt_create

sortType
string

Sort Type,asc|desc,Default desc

Response

200 - application/json
code
integer
data
object
message
string
redirect
string
requestId
string