Skip to content

Deleting Data

You can delete data that has been stored in Flybase by sending a DELETE request to remove a document using the unique _id.

DELETE /apps/{app}/collections/{collection}/{_id}

curl -X DELETE -H "X-Flybase-API-Key: 74c8062f-cd6f-4c07-8baf-b1h241496dec" \
    https://api.flybase.io/apps/web/collections/users/4e7315a65e4ce91f885b7dde      

That’s it, all you have to do to delete a document, is make a DELETE request, Flybase’s API will handle the rest.