api access

External API

  1. Home › 
  2. API Access

Get message from queue

This operation selects the first message from the FIFO message queue without deleting it

Unique message identifier

Date of adding a message to the queue

Message details according to type. Common fields are listed below
Type of queue message details. Possible types are described below
pendingResult Latest domain operation was put to pending and this messages defines the result of the pending operation
balanceThreshold Account funds threshold notification, set by the account holder

Operation that added message to the queue
Fully qualified domain name FQDN
True if the operation completed successfully
Serialized error if the operation fails

Current account funds balance

HTTP ENDPOINT
GET /v1/messages
EXAMPLE REQUEST: GET /v1/messages
EXAMPLE RESPONSE: HTTP 200 OK
{
    "id": 1100,
    "created": "2000-06-15T10:00:00.0000000+00:00",
    "data": {
        "operation": "register",
        "type": "pendingResult",
        "domain": "example.com",
        "success": true,
        "error": null
    }
}