List available addons
GET
https://api.vpsbg.eu/v1/servers/{serverId}/addonsThis endpoint will return a list of all purchasable addons for your server with the price, calculated for your server configuration.
Request
Path Params
serverId
integer
required
Your VPSBG server id
Request samples
Responses
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
array of:
key
string
required
price
integer
required
price_with_vat
integer
required
Example
{
"data": [
{
"key": "cpanel-admin-5",
"price": 25,
"price_with_vat": 30
},
{
"key": "cpanel-pro-30",
"price": 35,
"price_with_vat": 42
},
{
"key": "cpanel-premier-100",
"price": 70,
"price_with_vat": 84
},
{
"key": "cpanel-plus-50",
"price": 50,
"price_with_vat": 60
},
{
"key": "backups",
"price": 5,
"price_with_vat": 6
},
{
"key": "100mbps-unmetered",
"price": 50,
"price_with_vat": 60
},
{
"key": "1gbps-unmetered",
"price": 450,
"price_with_vat": 540
},
{
"key": "windows-server-license",
"price": 10,
"price_with_vat": 12
}
]
}
Last modified: 18 days ago