Skip to content

Latest commit

 

History

History
42 lines (38 loc) · 871 Bytes

email.md

File metadata and controls

42 lines (38 loc) · 871 Bytes

Back to main

Generic

Email User


Endpoint: /Email

Email User

Back to the top

POST

Expected Request

{
    "body": {
        "email_to": [2],
        "email_subject": "Test",
        "email_body": "Test email"
    },
    "action": "send_email"
}


Variable Data Type Required Additional Validation
email_to array of integers True No
email_subject string True No
email_body string True No


Expected Response:

Healthy Call

{
    "message": "Email Sent"
}

Unhealthy Call

{
    "error": "error message"
}