Skip to main content
DELETE
/
api
/
saved-items
/
{id}
Unsave Item
curl --request DELETE \
  --url https://api.example.com/api/saved-items/{id}

Authentication

Requires authentication. Only the owner can unsave their items.

Path Parameters

ParameterTypeDescription
idUUIDThe saved item ID

Behavior

  • Deletes the saved item record.
  • Cascades: removes the item from all collection_saved_items entries first.
  • This means unsaving removes the item from every collection it belongs to.

Response (200)

{
  "success": true
}

Error Responses

StatusCodeDescription
401UNAUTHORIZEDNot authenticated
403FORBIDDENNot the owner
404NOT_FOUNDSaved item not found