Get Segmentation Settings

Get Segmentation Settings
Get the global settings for segmentation-related operations.

Returns two global settings used by any operation that creates groups: the group delimiter and the group prefix. Both apply across segmentation planning and infrastructure monitoring features.

Notes

  • These settings are global and apply to all sessions, not to any individual session.
  • Use PUT /segmentation/settings to update them; changes take effect immediately for any subsequent group-creating operation.
  • Returns 200 on success.
Request
URI
GET
https://{api_host}/ssp/segmentation/settings
COPY
Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns SegmentationSettings of type(s) application/json
This response body class contains all of the following: ManagedResource , InlineSegmentationSettings1
{
    "_create_user": "system",
    "_create_time": 1781899796657,
    "_last_modified_user": "admin",
    "_last_modified_time": 1782343250123,
    "_revision": 1,
    "_resource_type": "string",
    "_system_owned": false,
    "id": "global_segmentation_settings",
    "display_name": "Global Segmentation Settings",
    "description": "string",
    "site_ids": [],
    "group_delimiter": ".",
    "group_prefix": "Group",
    "rule_prefix": "Rule",
    "policy_prefix": "Policy",
    "auto_sync_private_ip_range_groups": true
}

400

Bad Request

Returns BadRequest of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


401

Unauthorized

Returns Unauthorized of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


403

Forbidden

Returns Forbidden of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


412

Precondition Failed

Returns PreconditionFailed of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


428

Precondition Required

Returns PreconditionRequired of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


429

Too Many Requests

Returns TooManyRequests of type(s) application/json
{
    "error_code": 0,
    "module_name": "string",
    "error_message": "string"
}
integer
error_code
Required  

HTTP Status or Application error code.

string
module_name
Optional

Module where the error happened.

string
error_message
Required  

Message describing the error.


Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/ssp/segmentation/settings