Activate a placed order for your services

Activate an order that was previously created, for example, after a successful payment. The endpoint returns an order ID that can be used in later calls to track order status or manage the service.

Headers

Accept Example
Content-Type Example

Body

required
application/json
orderId string required

Responses

200
success boolean
timestamp string
requestId string
data object
POST https://cloud.hostup.se/api/account/activate-order
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/account/activate-order" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "orderId": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string",
    "orderId": "string"
  }
}
Request Body
{
  "orderId": "string"
}