GET
/
merchant
/
email
/
history_list
Get Email History List
curl --request GET \
  --url https://api.unibee.top/merchant/email/history_list \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "emailHistories": [
      {
        "attachFile": "<string>",
        "content": "<string>",
        "createTime": 123,
        "email": "<string>",
        "id": 123,
        "merchantId": 123,
        "response": "<string>",
        "success": true,
        "title": "<string>"
      }
    ],
    "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.

Query Parameters

searchKey
string<string>

Search Key, email or title

email
string<string>

Filter Email

sortField
string<string>

Sort Field,gmt_create|gmt_modify,Default gmt_modify

sortType
string<string>

Sort Type,asc|desc,Default desc

page
integer

Page, Start 0

count
integer

Count Of Per Page

createTimeStart
integer

CreateTimeStart

createTimeEnd
integer

CreateTimeEnd

Response

200 - application/json

The response is of type object.