- 👋 Hello
- API Introduction
- API Reference
- User
- Balance
- Affiliate
- Invoices
- Support
- SSH Keys
- Servers
- Scale
- Addons
- Rescue
- List plans
- List servers
- Server status
- Get a server
- Server metrics
- Bandwidth
- Deploy new server
- Start a server
- Restart a server
- Stop a server
- Power off
- Cancel server
- Undo cancel request
- Change password
- Update hostname
- Update SSH Keys
- Modify ISOs
- Restore
- Renew server
- Reinstall Server
- Change Primary IP
- Calculate renew amount
- Plans
- Snapshots
- Backups
- Server Images
- Floating IPs
- IP Addresses
- Network Protection
- Orders
- ISOs
Create new ticket
POST
https://api.vpsbg.eu/v1/support/tickets
Support
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 multipart/form-data
department_id
integerÂ
required
Example:
2
subject
stringÂ
required
>= 3 characters<= 255 characters
Example:
Example subject
message
stringÂ
required
>= 5 characters
Example:
Example message.
attachments[]
fileÂ
optional
service_id
integerÂ
optional
service_type
stringÂ
optional
Examples:
hostingserver
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/support/tickets' \
--header 'Accept;' \
--form 'department_id="2"' \
--form 'subject="Example subject"' \
--form 'message="Example message."' \
--form 'attachments[]=@""' \
--form 'service_id=""' \
--form 'service_type=""'
Responses
🟢200Success
application/json
Body
id
integerÂ
required
Example:
133
status
stringÂ
required
Example:
opened
subject
stringÂ
required
Example:
Account issue
created_at
stringÂ
required
Example:
2024-11-20T22:00:00.000000Z
updated_at
stringÂ
required
Example:
2024-12-20T22:00:00.000000Z
department
stringÂ
required
Example:
tech-support
service_label
string  | nullÂ
optional
service_type
string  | nullÂ
optional
service_id
integerÂ
required
messages
array [object {5}]Â
required
id
integerÂ
required
content
stringÂ
required
Example:
Explaining of the problem...
is_customer
booleanÂ
required
created_at
stringÂ
required
attachments
array [object {4}]Â
required
Example
{
"id": 216,
"status": "opened",
"subject": "Server misbehaves",
"created_at": "2024-08-02T11:57:57.000000Z",
"updated_at": "2024-08-02T12:02:18.000000Z",
"department": "tech-support",
"service_label": "ubuntu-16gb - 87.120.8.29",
"service_type": "server",
"service_id": 2747,
"messages": [
{
"id": 50,
"content": "Example reply message.",
"is_customer": true,
"created_at": "2024-10-22T11:54:28.000000Z",
"attachments": [
{
"id": 5,
"name": "first_attachment.png",
"size": 1426,
"mimeType": "image/png"
},
{
"id": 6,
"name": "second_attachment.png",
"size": 1242,
"mimeType": "image/png"
}
]
}
]
}
🔴500Server Error
Modified at 2024-11-29 08:42:32