POST
/
api
/
templates
/
email
/
send
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": 200
}

This API is intended for server-side usage only. Requests from the client-side will be blocked for security reasons.

Authorizations

Authorization
string
header
required

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

Body

Response

200
application/json

Successful response

The response is of type object.