Get Ssp Feature Deployment
Retrieves the persisted deployment request (intended action and revision) for the specified feature. Note that this returns the staged configuration, not the live runtime state. To view live execution metrics - such as the current deployment phase, pre-check results, and overall progress - use GET /lcm/features/{feature}/status.
Chain: Issue this before PUT when sending _revision, unless the client already holds a fresh copy.
See Endpoint Guide for route comparison and workflow.
Platform feature key (case-sensitive). See SspFeature; for example INTELLIGENCE for Security Intelligence.
Current staged deployment resource for the feature, including generation for concurrency control.
{
"_revision": 4,
"action": "DEPLOY"
}
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.
An error occurred while retrieving staged deployment information. This could be due to authentication issues, authorization failures, invalid requests, or internal server errors.
{
"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/lcm/features/{feature}