Get pending order information

Check for any ongoing orders associated with your account. Returns a unique ID needed to track the order in other parts of the system, such as for payment or administration.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/account/pending-orders
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/account/pending-orders" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "pendingOrder": "string"
  }
}