- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plansGET
- List serversGET
- Server statusGET
- Get a serverGET
- Server metricsGET
- BandwidthGET
- Deploy new serverPOST
- Start a serverPOST
- Restart a serverPOST
- Stop a serverPOST
- Power offPOST
- Cancel serverPOST
- Undo cancel requestDELETE
- Change passwordPUT
- Update hostnamePUT
- Update SSH KeysPATCH
- Modify ISOsPOST
- RestorePOST
- Renew serverPOST
- Reinstall ServerPOST
- Change Primary IPPOST
- Calculate renew amountPOST
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
Calculate renew amount
POST
https://api.vpsbg.eu/v1/servers/renew/calculate
Servers
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Header Params
Accept
stringÂ
required
Default:
application/json
Body Params application/json
server_ids
array[integer]
required
billing_cycle
integerÂ
required
Examples:
1361224
promo_code
stringÂ
optional
Example:
fall2406
Example
{
"server_ids": [
152414
],
"billing_cycle": 1,
"promo_code": "fall2406"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.vpsbg.eu/v1/servers/renew/calculate' \
--header 'Accept;' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
amount
numberÂ
required
amount_with_vat
numberÂ
required
discount
integerÂ
required
discount_with_vat
integerÂ
required
promo_code
objectÂ
optional
code
stringÂ
required
percentage
numberÂ
required
minimum_billing_cycle
integerÂ
required
due_today_amount
numberÂ
required
due_today_amount_with_vat
numberÂ
required
promo_amount
numberÂ
required
promo_amount_with_vat
numberÂ
required
Example
{
"amount": 99.67,
"amount_with_vat": 104.67,
"discount": 25,
"discount_with_vat": 30,
"promo_code": {
"code": "fall2403",
"percentage": 33.33,
"minimum_billing_cycle": 3
},
"due_today_amount": 74.67,
"due_today_amount_with_vat": 89.61
}
🔴500Server Error
🟠422Validation error (specified in the response)
Modified at 2025-03-27 08:42:04