Add a billing contact to your account

Add a specific contact person for billing-related communication for your account. This ensures important billing messages reach the correct person. The API returns an ID for tracking the contact creation.

Headers

Accept Example
Content-Type Example

Body

required
application/json
email string required
description string required

Responses

200
success boolean
timestamp string
requestId string
data object
503
error string
message string
code string
timestamp string
requestId string
POST https://cloud.hostup.se/api/account/billing-cc
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/account/billing-cc" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "email": "string",
    "description": "string"
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "success": true,
    "message": "string",
    "contact": {
      "id": 0,
      "email": "string",
      "description": "string"
    }
  }
}
Request Body
{
  "email": "string",
  "description": "string"
}