Skip to main content
POST
/
api
/
transactionals
Python
import requests

url = 'https://app.minimo.it/api/transactionals'
headers = {'Authorization': 'Bearer {{BEARER_TOKEN}}', 'Content-Type': 'application/json'}
data = {
    'recipient': '{{recipient}}',
    'uid': '{{uid}}',
    'customFields': {
        '{{customKey1}}': '{{customValue1}}',
        '{{customKey2}}': '{{customValue2}}',
        '{{customKey3}}': '{{customValue3}}'
    }
}
response = requests.post(url, json=data, headers=headers)
print(response.json())
{
  "status": 123
}
This endpoint is deprecated and will be removed on June 1, 2026. Please migrate to the new Send Email Template endpoint.

Why This Is Deprecated

This endpoint has been replaced with a more flexible and consistent API under Messaging Channels.

What’s Wrong With This Endpoint?

  • Uses unclear naming (uid instead of templateId)
  • Inconsistent with other channel APIs
  • Limited error handling
  • No support for advanced template features

Use the New Endpoint Instead

New endpoint: POST /api/templates/email/send View new endpoint documentation →

Migration

Old Request (This Endpoint)

{
  "uid": "unique_template_id",
  "recipient": "[email protected]",
  "customFields": {
    "name": "John Doe",
    "orderNumber": "12345"
  }
}
{
  "templateId": "tmpl_abc123",
  "recipient": "[email protected]",
  "customFields": {
    "name": "John Doe",
    "orderNumber": "12345"
  }
}
Changes needed:
  1. Update endpoint URL: /api/transactionals/api/templates/email/send
  2. Rename uidtemplateId
  3. Update template IDs in your code (now prefixed with tmpl_)

Migration Deadline

DateStatus
November 2025Deprecated (still works)
June 1, 2026Removed (will return 410 Gone)
You have until June 1, 2026 to migrate. Plan your migration now to avoid service disruption.

Need Help?

Authorizations

Authorization
string
header
required

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

Body

recipient
string
required

Email address of the recipient

uid
string
required

UID of the transactional email

customFields
object

Custom fields specific to the email

Response

Successful response

status
integer