List firewall groups for your services

Retrieve a list of firewall groups associated with your services. This information is useful for understanding and managing network security for your servers and hosting. The endpoint returns a unique ID that may be needed for subsequent actions.

Headers

Accept Example
Content-Type Example

Responses

200
success boolean
timestamp string
requestId string
data object
GET https://cloud.hostup.se/api/firewall-groups
For AI assistants
cURL
curl -X GET "https://cloud.hostup.se/api/firewall-groups" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json"
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "groups": [
      "string"
    ]
  }
}