POST
/
merchant
/
metric
/
detail
curl --request POST \
  --url https://api.unibee.top/merchant/metric/detail \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "metricId": 123
}'
{
  "code": 123,
  "data": {
    "merchantMetric": {
      "aggregationProperty": "<string>",
      "aggregationType": 123,
      "code": "<string>",
      "createTime": 123,
      "gmtModify": 123,
      "id": 123,
      "merchantId": 123,
      "metricDescription": "<string>",
      "metricName": "<string>",
      "type": 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
metricId
integer
required

MetricId

Response

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