Manage IP addresses on the port 25 bypass list

View and manage IP addresses that are exempted from port 25 blocking. This is useful for you if you need to send emails from specific IP addresses that would otherwise be blocked.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
404

No response body

GET https://cloud.hostup.se/api/port25-whitelist
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/port25-whitelist" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "entries": [
      {
        "id": 0,
        "ipAddress": "string",
        "clientId": "string",
        "serviceId": "string",
        "serviceName": "string",
        "notes": "string",
        "createdAt": "string",
        "updatedAt": "string"
      }
    ],
    "total": 0
  }
}