OrdersCreate
Unlimited Residential Budget
Create an Unlimited Residential Budget proxy order
Create Unlimited Residential Budget Order
Endpoint: POST /orders
Unlimited Residential Budget is a duration-type plan with per-duration options (for example Speed). Supply plan, duration, and a config object whose keys match options[].name from GET /plans/{slug}.
Required Fields
| Field | Type | Required | Notes |
|---|---|---|---|
plan | string (slug) | yes | unlimited-residential-budget. |
duration | string (slug) | yes | Must match plan.durations[].slug (e.g. 1_day, 1_week, 1_month). |
config | object | varies | Required when the chosen duration exposes options; use option names as keys (speed, etc.). |
See Common Fields for optional discount_code, and Duration Slug Format. Orders use account balance only.
How options map to config
From GET /plans/unlimited-residential-budget, each duration lists options with name, type, and allowed values:
selectoptions: setconfig[name]to one ofoption.options[].value(numeric Mbps values like10).number/range: send a number respectingmin,max, andstep.
Request Body
{
"plan": "unlimited-residential-budget",
"duration": "1_day",
"config": {
"speed": 10
}
}Always verify keys and allowed values from the live plan payload; option IDs and value lists can differ by duration.