v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Protection Profiles

List all protection profiles

List all protection profiles (filtered, sorted). Sorting by default is by 'created_at' field desc.

get/security/sifter/v3/profiles/all

Query parameters

namestring nullable

Filter by name

Filter by name

client_idinteger nullable

A positive integer ID

A positive integer ID

order_bystring nullable

Ordering, e.g. 'created_at,name'

Ordering, e.g. 'created_at,name'

Response

Successful Response

idinteger required

Identifier for the protection profile

namestring required

Name of the protection profile

client_idinteger nullable

Identifier of the client owning this profile

created_atstring date-time required

Timestamp when the profile was created

modified_atstring date-time nullable

Timestamp of the last modification

Example response

[
  {
    "client_id": 3,
    "created_at": "2025-06-15T10:30:00Z",
    "id": 10,
    "modified_at": "2025-07-20T14:45:00Z",
    "name": "Web Server Protection",
    "networks": [
      "192.168.1.0/24",
      "10.0.0.0/16"
    ],
    "template": {
      "id": 1,
      "name": "DDoS Protection Standard"
    }
  }
]