ProposedSegmentationObjectsRequest

ProposedSegmentationObjectsRequest
Proposed Segmentation Objects Request

Request object for querying proposed segmentation objects with filtering, sorting, and pagination.

Type-Specific Filters with Validation:

  • has_tiers: Only valid with segmentation_object_type: ["APP"] (single value).
  • application_type: Only valid with segmentation_object_type: ["APP"] (single value).

Supported sort_by values: displayName (default)

Notes:

  • has_tiers, application_type, and application_workload_type filters are only valid when segmentation_object_type is set to the single value ["APPLICATION"]; using them with other types or multiple types returns an error.
  • All specified filters are combined with AND semantics.
  • parent_id can be used to retrieve all tiers belonging to a specific application.
AllOf
JSON Example
{
    "site_ids": [
        "123a456b-123c-456d-89ab-cdef12345678"
    ],
    "offset": 0,
    "page_size": 1000,
    "sort_ascending": false,
    "sort_by": "displayName",
    "segmentation_object_type": [
        "ENVIRONMENT"
    ]
}