Message

Pop a message from the inbound message queue

Pop a message from the inbound message queue. The message is removed from the queue and won't be shown again

get/api/v1/messages

Response

Message retrieved

idstring

Id of the message, hex encoded

srcstring

Sender public key, hex encoded

dststring

Receiver public key, hex encoded. This is the public key of the system

payloadstring byte

The message payload, encoded in standard alphabet base64

Example response

{
  "id": "0123456789abcdef",
  "src": "fedbca9876543210fedbca9876543210fedbca9876543210fedbca9876543210",
  "dst": "02468ace13579bdf02468ace13579bdf02468ace13579bdf02468ace13579bdf",
  "payload": "xuV+"
}

Changes