GET
/
api
/
messages
/
stats
/
{id}
Get Message Statistics
curl --request GET \
  --url https://app.minimo.it/api/messages/stats/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "seenAt": "2023-12-04T15:00:00Z",
    "created": "2023-12-01T12:00:00Z",
    "ctaClickedAt": "2023-12-05T10:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The unique ID of the message.

Response

200
application/json

Successful response with message statistics.

The response is of type object.