GET
/
api
/
transactionals
/
{id}
/
stats
Retrieve Transactional Detail and Statistics
curl --request GET \
  --url https://app.minimo.it/api/transactionals/{id}/stats \
  --header 'Authorization: Bearer <token>'
{
  "created": "2023-12-01T10:00:00Z",
  "openRate": "85%",
  "clickRate": "50%",
  "totalMessagesSent": 1000
}

⚠️ 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.

Path Parameters

id
integer
required

The unique ID of the transactional message.

Example:

123

Response

200
application/json

Successful response with transactional detail and statistics.

The response is of type object.