OrdersCreate
Static Datacenter
Create a Static Datacenter proxy order
Create Static Datacenter 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": 3350393, // This is the key we pass to the order
"value": "Armenia"
},
...
]
}
}
]Request Body
{
"plan_id": 9,
"plan_duration_id": 9,
"options": {
"country": "3350393"
}
}