OrdersCreate
Static ISP
Create a Static ISP proxy order
Create Static ISP Order
Endpoint: POST /orders
plan_duration_id possible values can be found from the plan GET API call.
country parameter must be a string value. The available options for the country parameter can be seen under the plan under the options key.
...
"options": [
{
"name": "country",
"is_required": true,
"metadata": {
"options": [
{
"key": 3346861, // This is the country ID we pass to the order
"value": "Austria"
},
...
]
}
}
]Request Body
{
"plan_id": 10,
"plan_duration_id": 16,
"options": {
"country": "3346861"
}
}