OrdersCreate
Static ISP
Create a Static ISP proxy order
Create Static ISP Order
Endpoint: POST /orders
Static ISP is a duration-type plan. Supply plan, duration, and config. Each duration on GET /plans/static-isp exposes a country select option; put the chosen option.options[].value into config.country.
See Static ISP product for ports and the full plan response (durations, countries, IDs).
Required Fields
| Field | Type | Required | Notes |
|---|---|---|---|
plan | string (slug) | yes | static-isp. |
duration | string (slug) | yes | Duration slug from plan.durations[].slug (e.g. 30_days, 90_days, 180_days, 360_days). |
config | object | yes | Must include every option on that duration — typically country set to one of option.options[].value. |
Optional: discount_code. See Common Fields. Orders use account balance only.
Request Body
{
"plan": "static-isp",
"duration": "30_days",
"config": {
"country": "us"
}
}Match the country value type (number or string) to what GET /plans/static-isp returns under option.options[].value.