Delete deployment noteedit

Delete note for the running deployment.

Requestedit

DELETE /api/v1/deployments/{deployment_id}/notes/{note_id}

Path parametersedit

Name Type Required Description

deployment_id

string

Y

Identifier for the deployment

note_id

string

Y

Identifier of the note to be deleted

Query parametersedit

Name Type Required Description

version

integer

N

If specified then checks for conflicts against the version of the deployment note

Responsesedit

200

(Notes) List of deployment notes after {note_id} has been deleted

Headers

x-cloud-resource-version (string)
The version of the resource - used to avoid update conflicts from multiple concurrent operations
404

(BasicFailedReply) The deployment specified by {deployment_id} or note specified by {note_id} cannot be found (code: 'notes.note_not_found')

449

(BasicFailedReply) elevated permissions are required. (code: '"root.needs_elevated_permissions"')

To perform this operation, you must be authenticated by means of one of the following methods: apiKey, basicAuth.

Request exampleedit

curl -XDELETE {{hostname}}/api/v1/deployments/{deployment_id}/notes/{note_id} \
-u $CLOUD_USER:$CLOUD_KEY