Activate Public iPXE boot feature for a dedicated server

POST/v1/hosts/dedicated_servers/{server_id}/features/public_ipxe_boot/activate

A POST request to /v1/hosts/dedicated_servers/{server_id}/features/public_ipxe_boot/activate activates the Public iPXE boot feature. An iPXE configuration should be specified as a string in the request body. Learn more in the iPXE Boot section.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

FieldDetails
server_id
string

A unique identifier of a dedicated server.

Request Body

FieldDetails
ipxe_config?
string

iPXE configuration as a string.

Response Body

application/json

application/json

application/json

curl -X POST "https://example.com/v1/hosts/dedicated_servers/3YaO6Eex/features/public_ipxe_boot/activate" \  -H "Content-Type: application/json" \  -d '{    "ipxe_config": "#!ipxe\\\\n chain --autofree image.efi"  }'
{  "name": "public_ipxe_boot",  "status": "activation"}