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

src_ipstring ipv6

Sender overlay IP address

src_pkstring

Sender public key, hex encoded

dst_ipstring ipv6

Receiver overlay IP address

dst_pkstring

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_ip": "34f:b680:ba6e:7ced:355f:346f:d97b:eecb",
  "src_pk": "fedbca9876543210fedbca9876543210fedbca9876543210fedbca9876543210",
  "dst_ip": "34f:b680:ba6e:7ced:355f:346f:d97b:eecb",
  "dst_pk": "02468ace13579bdf02468ace13579bdf02468ace13579bdf02468ace13579bdf",
  "payload": "xuV+"
}

Changes