Get Segmentation Session
Retrieves details of a specific segmentation session by its unique identifier. Returns session metadata including status, timestamps, and configuration.
Notes
- The
status.statusfield reflects the current lifecycle stage (e.g.,FILE_VALIDATED,FILE_PARSED,ANALYSIS_SUCCESS). UseGET /{session-id}/statusfor lightweight polling without the full session payload. - The
actionfield shows the last action that was requested; it does not indicate the current processing state. - Returns 200 on success.
Unique identifier of the segmentation session
Successfully retrieved segmentation session
{
"action": "NONE",
"_create_user": "admin",
"_create_time": 1781138986293,
"_last_modified_user": "admin",
"_last_modified_time": 1781138986293,
"_revision": 0,
"id": "aaaa1111-bbbb-2222-cccc-3333dddd4444",
"display_name": "session_aaaa1111-bbbb-2222-cccc-3333dddd4444",
"site_ids": [],
"status": {
"status": "FILE_READY_TO_PARSE",
"progress_percent": 0,
"error_messages": [],
"parsing_error_count": 0
}
}
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 -H 'Authorization: <value>' https://{api_host}/ssp/segmentation/{session-id}