Skip to content

Delete an Item

DELETE
/vaults/{vaultUuid}/items/{itemUuid}
curl --request DELETE \
--url http://1password.local/vaults/example/items/example \
--header 'Authorization: Bearer <token>'
vaultUuid
required
string
/^[\da-z]{26}$/

The UUID of the Vault the item is in

itemUuid
required
string
/^[\da-z]{26}$/

The UUID of the Item to update

Successfully deleted an item

Invalid or missing token

Media type application/json
object
message

A message detailing the error

string
status

HTTP Status Code

integer
Example
{
"message": "Invalid token signature",
"status": 401
}

Unauthorized access

Media type application/json
object
message

A message detailing the error

string
status

HTTP Status Code

integer
Example
{
"message": "vault {vaultUuid} is not in scope",
"status": 403
}

Item not found

Media type application/json
object
message

A message detailing the error

string
status

HTTP Status Code

integer
Examples
Example vaultNotFound

Vault not found

{
"message": "vault {vaultUuid} not found",
"status": 404
}