Skip to main content
Version: v2.0

Delete deployables

Delete a deployable's configuration data.

HTTP request

DELETE /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

Don't supply a request body for this method.

Response

No response body — a nil error means the delete was accepted.

Example

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