Skip to main content
Version: main

Upload deployable file

Upload a deployable configuration file.

HTTP request

POST /api/sn_cdm/applications/uploads/deployables/file

Path parameters

None.

Query parameters

NameDescription
appNameOptional — set via the verb's QueryParameters type.
deployableNameOptional — 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)
}
Was this page helpful?