Pin a domain for quick access to the control panel

Pin a specific domain to your overview or dashboard for quicker access to its settings and management. A successful call returns a unique `requestId` for tracking the operation.

Headers

Accept Example
Content-Type Example

Body

required
application/json
domain_id string required
domain_name string required

Responses

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