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>"
}
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>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.