GET
/
merchant
/
email
/
template_list
curl --request GET \
  --url https://api.unibee.top/merchant/email/template_list \
  --header 'Authorization: Bearer <token>'
{
  "code": 123,
  "data": {
    "emailTemplateList": [
      {
        "createTime": 123,
        "gatewayTemplateId": "<string>",
        "id": 123,
        "languageData": [
          {
            "content": "<string>",
            "language": "<string>",
            "title": "<string>"
          }
        ],
        "localizationVersions": [
          {
            "activate": true,
            "localizations": [
              {
                "content": "<string>",
                "language": "<string>",
                "title": "<string>"
              }
            ],
            "versionId": "<string>"
          }
        ],
        "merchantId": 123,
        "status": "<string>",
        "templateAttachName": "<string>",
        "templateContent": "<string>",
        "templateDescription": "<string>",
        "templateName": "<string>",
        "templateTitle": "<string>",
        "updateTime": 123
      }
    ],
    "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.

Response

200 - application/json

The response is of type object.