Commands: DeleteKey

The DELETE method is used to remove a configuration stored under the specified key.

Syntax

curl \
	http://{serverUrl}/fs/{fileSystemName}/config?name={name}  \
	-X DELETE

Request

Query parameter Required Description
name Yes The configuration name

Response

Status code Description
204 NoContent

Example

curl \
	-X DELETE http://localhost:8080/fs/NorthwindFS/config?name=descriptions/intro.avi
< HTTP/1.1 204 NoContent