Response from sending a transactional mail
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TransactionalMailResponse", "title": "TransactionalMailResponse", "type": "object", "description": "Response from sending a transactional mail", "properties": { "status": { "type": "string", "description": "Status of the send operation", "enum": [ "success", "failed" ] }, "message_id": { "type": "string", "description": "Unique identifier for the sent message" } } }