GET
/
api
/
templates
/
email
List All Transactionals
curl --request GET \
  --url https://app.minimo.it/api/templates/email \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 1,
      "name": "Order Confirmation",
      "created": "2023-12-01T10:00:00Z",
      "updated": "2023-12-04T15:30:00Z"
    },
    {
      "id": 2,
      "name": "Shipping Update",
      "created": "2023-11-15T08:00:00Z",
      "updated": "2023-12-01T12:45:00Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Successful response with a list of transactional messages.

The response is of type object.