Delete an Item
curl --request DELETE \
--url http://localhost:8080/v1/vaults/{vaultUuid}/items/{itemUuid} \
--header 'Authorization: Bearer <token>'{
"status": 401,
"message": "Invalid token signature"
}API Reference
Delete an Item
DELETE
/
vaults
/
{vaultUuid}
/
items
/
{itemUuid}
Delete an Item
curl --request DELETE \
--url http://localhost:8080/v1/vaults/{vaultUuid}/items/{itemUuid} \
--header 'Authorization: Bearer <token>'{
"status": 401,
"message": "Invalid token signature"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The UUID of the Vault the item is in
Pattern:
^[\da-z]{26}$The UUID of the Item to update
Pattern:
^[\da-z]{26}$Response
Successfully deleted an item
Was this page helpful?
⌘I