generate_sas_upload_url
Create a secure SAS URL for direct large file package uploads to Optimizely DXP environments, streamlining deployment workflows.
Instructions
Generate SAS URL for direct package upload (best for large files)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| apiKey | No | ||
| apiSecret | No | ||
| environment | 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"
},
"projectId": {
"type": "string"
},
"projectName": {
"type": "string"
}
},
"required": [
"environment"
],
"type": "object"
}