Skip to main content
Version: main

Update deployables

Update a deployable's configuration data.

HTTP request

PUT /api/sn_cdm/applications/deployables

Path parameters

None.

Query parameters

NameDescription
appNameOptional — set via the verb's QueryParameters type.
nameOptional — set via the verb's QueryParameters type.

Request body

Supply a cdmapplicationsapi.DeployableUpdateRequest.

Response

DeployableUpdateResponse.

Example

// Build the request body

response, err := client.Cdm().Applications().Deployables().Put(ctx, nil)
if err != nil {
log.Fatal(err)
}
Was this page helpful?