Skip to content
Guides
API reference
stablenotification:read

List templates

GET/v1/notifications/templates

Authorization

bearerAuth
AuthorizationBearer <token>

OAuth2 access token issued by Ecomiq Auth.

In: header

Query Parameters

page?integer
Formatint32
pageSize?integer
Formatint32
search?string

Free-text filter. Which fields it covers depends on the resource.

sortBy?string

Field to sort by. Accepted values depend on the resource.

sortDirection?string

Sort direction: asc or desc.

Value in

  • "asc"
  • "desc"
channel?string

Value in

  • "email"
  • "sms"
  • "push"
  • "whatsApp"
  • "inApp"
  • "webhook"
groups*array<string>
key?string
locale?string
scope?string

Value in

  • "system"
  • "store"

Response Body

application/json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/notifications/templates?groups=string"
{  "pageIndex": 0,  "pageSize": 0,  "count": 0,  "totalPages": 0,  "hasPreviousPage": true,  "hasNextPage": true,  "data": [    {      "id": "string",      "storeId": null,      "group": "string",      "name": "string",      "key": "string",      "notification": "email",      "locale": null,      "version": 0,      "status": "draft"    }  ]}