View status of port 25 requests

View the status of port 25 requests. The endpoint returns a unique ID that can be used in subsequent calls to retrieve detailed information about the request.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/port25/requests
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/port25/requests" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "whitelist": [
      {
        "id": 0,
        "ipAddress": "string",
        "clientId": "string",
        "serviceId": "string",
        "serviceName": "string",
        "notes": "string",
        "addedByAdminId": "string",
        "addedByAdminUsername": "string",
        "createdAt": "string",
        "updatedAt": "string"
      }
    ],
    "requests": [
      {
        "id": 0,
        "clientId": "string",
        "serviceId": "string",
        "serviceName": "string",
        "ipAddress": "string",
        "justification": "string",
        "status": "string",
        "decisionReason": "string",
        "decidedByAdminId": "string",
        "decidedByAdminUsername": "string",
        "autoApproved": true,
        "trustTier": 0,
        "bankidVerified": true,
        "totalSpend": "string",
        "accountAgeDays": 0,
        "createdAt": "string",
        "updatedAt": "string"
      }
    ]
  }
}