GET
/
merchant
/
subscription
/
admin_note_list
curl --request GET \
  --url https://api.unibee.top/merchant/subscription/admin_note_list \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "noteLists": [
      {
        "createTime": 123,
        "email": "<string>",
        "firstName": "<string>",
        "id": 123,
        "lastName": "<string>",
        "mobile": "<string>",
        "note": "<string>",
        "subscriptionId": "<string>",
        "userName": "<string>"
      }
    ]
  },
  "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.

Query Parameters

subscriptionId
string
required

SubscriptionId

page
integer

Page, Start With 0

count
integer

Count Of Page

Response

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