curl --request POST \
--url https://api.unibee.top/merchant/subscription/admin_note_list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"count": 123,
"page": 123,
"subscriptionId": "<string>"
}'
{
"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>"
}
curl --request POST \
--url https://api.unibee.top/merchant/subscription/admin_note_list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"count": 123,
"page": 123,
"subscriptionId": "<string>"
}'
{
"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>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.