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

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.