Skip to main content
GET
/
relay_servers
/
List relay servers
curl --request GET \
  --url https://api-v2.missioninbox.com/relay_servers/
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "id": 123,
      "domain_count": "<string>",
      "mailbox_count": "<string>",
      "name": "<string>",
      "transporter_key": "<string>",
      "transporter_provider": "<string>",
      "slug": "<string>",
      "users": [
        123
      ]
    }
  ]
}

Query Parameters

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

count
integer
Example:

123

next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"

results
object[]