upload_deployment_package
Deploy code to Optimizely DXP environments by uploading a deployment package for Integration, Preproduction, or Production stages. Requires package path and environment details.
Instructions
Upload a deployment package
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
apiSecret | No | ||
environment | Yes | ||
packagePath | 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"
},
"environment": {
"enum": [
"Integration",
"Preproduction",
"Production"
],
"type": "string"
},
"packagePath": {
"type": "string"
},
"projectId": {
"type": "string"
},
"projectName": {
"type": "string"
}
},
"required": [
"environment",
"packagePath"
],
"type": "object"
}