GET
/
api
/
transactionals
/
list
List All Transactionals
curl --request GET \
  --url https://app.minimo.it/api/transactionals/list \
  --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"
    }
  ]
}

⚠️ This endpoint is deprecated and will be removed in a future release. Please use the new one under the Templates section.

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.