Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 550 Bytes

delete_-_fullscan.md

File metadata and controls

39 lines (28 loc) · 550 Bytes

Delete - fullscan

Curl example:

curl -X POST "https://example.com/v1/collections/my-collection:remove" \
-d '{
    "filter": {
        "name": "Alfonso"
    },
    "limit": 10
}'

HTTP request/response example:

POST /v1/collections/my-collection:remove HTTP/1.1
Host: example.com

{
    "filter": {
        "name": "Alfonso"
    },
    "limit": 10
}

HTTP/1.1 200 OK
Content-Length: 56
Content-Type: text/plain; charset=utf-8
Date: Mon, 15 Aug 2022 02:08:13 GMT

{"id":"1","name":"Alfonso"}
{"id":"3","name":"Alfonso"}