Get permissions for a specific contact person

Check which services and actions a specific contact person is authorized for. It returns a unique ID ('requestId') that can be used in subsequent API calls to retrieve detailed information.

Path Parameters

contactId integer · min: 1 required Example

Unique contact identifier

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/contacts/{contactId}/permissions
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/contacts/8722/permissions" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "services": [
      {
        "id": "string",
        "name": "string",
        "type": "string",
        "category": "string",
        "hasAccess": true
      }
    ],
    "domains": [
      "string"
    ],
    "dnsZones": [
      "string"
    ],
    "canViewInvoices": true,
    "canReceiveInvoices": true,
    "canOpenTickets": true,
    "canViewTickets": true,
    "canReceiveTicketEmails": true,
    "canCloseTickets": true,
    "accessAllVps": true,
    "accessAllHosting": true,
    "canPlaceOrders": true,
    "accessAllDomains": true
  }
}