Skip to main content
POST
/
server
/
{serverId}
/
bootOrder
Boot Order
curl --request POST \
  --url https://servers.flashrdp.com/api/server/{serverId}/bootOrder \
  --header 'Accept: <accept>' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "order": "hdd,cdrom"
}
'
{
  "data": {
    "task": {
      "id": 2892,
      "status": "accepted"
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept
enum<string>
required
Available options:
application/json

Path Parameters

serverId
string
required

Body

application/json
order
enum<string>
required
Available options:
hdd,cdrom,
cdrom,hdd

Response

data
object
Last modified on June 20, 2026