Query Proposed Segmentation Group Resolved Members
Retrieves a paginated list of resolved members (VMs, segments, DVPGs) that belong to a specific group within a segmentation object. Members are tied to individual groups, not to the segmentation object as a whole.
Notes
- Unresolved IPs are returned separately via the ip-addresses endpoint.
- Supported sort_by values: displayName (default), objectType
- Returns 200 on success.
Unique identifier of the segmentation session.
Unique identifier of the proposed segmentation object.
Unique identifier of the proposed group within the segmentation object.
Optional query parameters for filtering, sorting, and pagination
{
"site_ids": [
"123a456b-123c-456d-89ab-cdef12345678"
],
"offset": 0,
"page_size": 1000,
"sort_ascending": false,
"sort_by": "displayName",
"object_type": [
"VIRTUAL_MACHINE"
]
}
Successfully retrieved group resolved members
{
"offset": 0,
"number_of_results": 3,
"total_result_count": 3,
"total_pages": 1,
"sort_ascending": false,
"sort_by": "displayName",
"result": [
{
"id": "7b3c9e12-a54f-4d8b-91c2-3e4f5a6b7c8d",
"display_name": "win10_vm_2",
"site_id": "123a456b-123c-456d-89ab-cdef12345678",
"object_type": "VIRTUAL_MACHINE"
},
{
"id": "f4e3d2c1-b0a9-4f8e-bd7c-6b5a4321fedc",
"display_name": "win10_vm_1",
"site_id": "123a456b-123c-456d-89ab-cdef12345678",
"object_type": "VIRTUAL_MACHINE"
},
{
"id": "a1b2c3d4-e5f6-4a5b-bcde-f1234567890a",
"display_name": "inc_1_nesx-node0_vm",
"site_id": "123a456b-123c-456d-89ab-cdef12345678",
"object_type": "VIRTUAL_MACHINE"
}
]
}
Bad Request
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Unauthorized
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Forbidden
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Precondition Failed
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Precondition Required
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Too Many Requests
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
Unexpected error
{
"error_code": 0,
"module_name": "string",
"error_message": "string"
}
HTTP Status or Application error code.
Module where the error happened.
Message describing the error.
curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/ssp/segmentation/{session-id}/results/proposed-segmentation-objects/{proposed-segmentation-object-id}/groups/{group-id}/resolved-members