Remove a tag from a VPS server

Remove a specific tag from a VPS server. This helps organize and manage your servers. The API returns the server ID and the name of the removed tag, useful for confirmation or subsequent logging.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
404
error string
message string
code string
timestamp string
requestId string
DELETE https://cloud.hostup.se/api/server-tags
For AI assistants
cURL
curl -X DELETE "https://cloud.hostup.se/api/server-tags" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "serverId": "string",
    "tagName": "string"
  }
}