Send messages to HostUps support or sales team.

Use this API to send requests, questions, or support tickets to HostUp. This can cover anything from product information and purchasing new services to technical support. The API returns a ticket number for future follow-up.

Headers

Accept Example
Content-Type Example

Body

required
application/json
name string required
email string required
subject string required
message string required

Responses

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