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.
Accept Example Content-Type Example success boolean timestamp string requestId string data object https://cloud.hostup.se/api/port25/requests curl -X GET "https://cloud.hostup.se/api/port25/requests" \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" {
"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"
}
]
}
}