Upload deployable file
Upload a deployable configuration file.
HTTP request
POST /api/sn_cdm/applications/uploads/deployables/file
Path parameters
None.
Query parameters
| Name | Description |
|---|---|
appName | Optional — set via the verb's QueryParameters type. |
deployableName | Optional — set via the verb's QueryParameters type. |
Request body
Supply a cdmapplicationsapi.Media.
Response
UploadStatusResponse.
Example
// Build the request body
var body *cdmapplicationsapi.Media
response, err := client.Cdm().Applications().Uploads().Deployables().File().Post(ctx, body, nil)
if err != nil {
log.Fatal(err)
}