v1

latestOpenAPI 3.0.2Apache 2.02026-07-17292234.0 KB
Message

Get the status of an outbound message

Get information about the current state of an outbound message. This can be used to check the transmission state, size and destination of the message.

get/api/v1/messages/status/{id}

Path parameters

idstring hex required

Response

Success

dststring ipv6

IP address of the receiving node

createdinteger

Unix timestamp of when this message was created

deadlineinteger

Unix timestamp of when this message will expire. If the message is not received before this, the system will give up

msgLeninteger

Length of the message in bytes

Example response

{
  "dst": "449:abcd:0123:defa::1",
  "state": "received",
  "created": 1649512789,
  "deadline": 1649513089,
  "msgLen": 27
}