get_deployment_status
Check the status of a specific deployment in Optimizely DXP by providing the deployment ID, ensuring real-time visibility into deployment progress and outcomes.
Instructions
Get the status of a deployment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
apiSecret | No | ||
deploymentId | Yes | ||
projectId | No | ||
projectName | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string"
},
"apiSecret": {
"type": "string"
},
"deploymentId": {
"type": "string"
},
"projectId": {
"type": "string"
},
"projectName": {
"type": "string"
}
},
"required": [
"deploymentId"
],
"type": "object"
}