v47

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-181,0851,7264.5 MB
Traffic Policy Profiles

Update a traffic policy profile

Updates a traffic policy profile.

patch/traffic_policy_profiles/{id}

Path parameters

idstring uuid required
Example:6a09cdc3-8948-47f0-aa62-74ac943d6c58

Identifies the traffic policy profile.

Request body

type'whitelist' | 'blacklist' | 'throttling'

The type of the traffic policy profile.

servicesstring[]

Array of PCEF service IDs to include in the profile.

ip_rangesstring[]

Array of IP ranges in CIDR notation.

domainsstring[]

Array of domain names.

limit_bw_kbps512 | 1024 | null nullable

Bandwidth limit in kbps. Must be 512 or 1024, or null to remove.

Example request

{
  "type": "whitelist",
  "services": [
    "service_123"
  ],
  "ip_ranges": [
    "10.64.0.0/24"
  ],
  "domains": [
    "netflix.com"
  ],
  "limit_bw_kbps": 1024
}

Response

Successful Response

Example response

{
  "data": {
    "id": "6a09cdc3-8948-47f0-aa62-74ac943d6c58",
    "record_type": "traffic_policy_profile",
    "type": "whitelist",
    "services": [
      "service_123",
      "service_456"
    ],
    "ip_ranges": [
      "10.64.0.0/24",
      "10.64.0.0/25"
    ],
    "domains": [
      "www.hbomax.com",
      "netflix.com"
    ],
    "limit_bw_kbps": 512,
    "created_at": "2018-02-02T22:25:27.521Z",
    "updated_at": "2018-02-02T22:25:27.521Z"
  }
}