Add or manage tags for web hosting accounts

Associate a specific tag with a customer account, primarily used to organize and categorize web hosting services. The result, including a unique request ID, can be used to track the operation in follow-up calls or for troubleshooting.

Headers

Accept Example
Content-Type Example

Body

required
application/json
accountId string required
tagName string required

Responses

200
success boolean
timestamp string
requestId string
data object
422
error string
message string
code string
timestamp string
requestId string
details array
POST https://cloud.hostup.se/api/hosting-tags
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/hosting-tags" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "accountId": "string",
    "tagName": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "accountId": "string",
    "tagName": "string"
  }
}
Request Body
{
  "accountId": "string",
  "tagName": "string"
}