Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 735 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 735 Bytes

Overview

All in one finance messaging microservice

Build Status

Documentation

Overall documentation for the aiof messaging microservice

Sending a message

The main functionality is sending a message based on a message type - email, sms, etc. Currently supported types are: email

Endpoints

  • Sending a message

/api/message/send

{
    "type": "Email",
    "from": "test@email.com",
    "to": "gtest@email.com",
    "subject": "",
    "cc": [
        "test@test.com"
    ],
    "bcc": [

    ]
}