Skip to main content
POST
/
server
/
{serverId}
/
iso
ISO
curl --request POST \
  --url https://servers.flashrdp.com/api/server/{serverId}/iso \
  --header 'Accept: <accept>' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "iso": "https://ftp.caliu.cat/debian-cd/current/amd64/iso-cd/debian-13.1.0-amd64-netinst.iso"
}
'
{
  "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
iso
string
required

Specify either an ISO ID or a url to a remote ISO (if the account supports it).

Response

data
object
Last modified on June 20, 2026