GET
/
api
/
messages
/
list
Retrieve All Messages
curl --request GET \
  --url https://app.minimo.it/api/messages/list \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "12345",
      "seenTimestamp": "2023-12-04T15:00:00Z",
      "senderEmail": "example@company.com",
      "subject": "Welcome to our service",
      "timestamp": "2023-12-01T12:00:00Z"
    },
    {
      "id": "67890",
      "seenTimestamp": "2023-12-05T10:00:00Z",
      "senderEmail": "support@company.com",
      "subject": "Your order has been shipped",
      "timestamp": "2023-12-02T08:30: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 messages.

The response is of type object.