Skip to main content
POST
/
isos
Create an ISO from a URL
curl --request POST \
  --url https://api.cloud.onidel.com/isos \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://example.com/images/debian-12.iso",
  "team_id": "96616865-475e-4191-aba5-f89f0a4b71fe"
}
'

Authorizations

Authorization
string
header
required

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

Body

application/json
url
string
required

Direct URL to the .iso file to download.

Example:

"https://example.com/images/debian-12.iso"

team_id
string<uuid>

Team ID. Default team will be used if not provided.

Example:

"96616865-475e-4191-aba5-f89f0a4b71fe"

Response

ISO accepted; download started