NovaProxy Docs
OrdersCreate

IPv6 Datacenter

Create an IPv6 Datacenter proxy order

Create IPv6 Datacenter Order

Endpoint: POST /orders

IPv6 Datacenter is a duration-type plan with a configurable speed option on each duration.

Required Fields

FieldTypeRequiredNotes
planstring (slug)yesipv6-datacenter.
durationstring (slug)yesDuration slug from plan.durations[].slug for that plan (e.g. 1_weeks, 30_days).
configobjectyesMust include speed with a value allowed for the chosen duration (see plan options).

See Common Fields for optional discount_code, and Duration Slug Format. Orders use account balance only.

Request Body

{
    "plan": "ipv6-datacenter",
    "duration": "1_weeks",
    "config": {
        "speed": 10
    }
}

Resolve allowed speed values from GET /plans/ipv6-datacenter: inspect durations[] for your slug, then the speed option under options (type, min / max / step, or options[].value for selects).

On this page