Message

Submit a new message to the system.

Push a new message to the systems outbound message queue. The system will continuously attempt to send the message until it is either fully transmitted, or the send deadline is expired.

post/api/v1/messages

Request body

payloadstring byte

The message to send, base64 encoded

Example request

{
  "dst": {
    "ip": "249:abcd:0123:defa::1"
  },
  "payload": "xuV+"
}

Response

Message pushed successfully

idstring

Id of the message, hex encoded

Example response

{
  "id": "0123456789abcdef"
}

Changes