Speedy-API

Speedy Delete API

create entity CRUD apis with writing a line of code

Delete Operations

Bulk Delete

delete multiple resource

URL

[DELETE] /speedy/v1/User

Request Body

[
    {
        "id": "1a2b3c4d-5678-90ab-cdef-1234567890ab"
    },
    {
        "id": "2b3c4d5e-6789-01ab-cdef-2345678901bc"
    }
]

Response

{
    "payload": [
        {
            "id": "1a2b3c4d-5678-90ab-cdef-1234567890ab"
        },
        {
            "id": "2b3c4d5e-6789-01ab-cdef-2345678901bc"
        }
    ],
    "pageCount": 1,
    "pageIndex": 0
}

Optimistic concurrency — If-Match

A single-key DELETE on an entity with a @SpeedyETag field honors If-Match: a stale tag (or a missing row) returns 412 Precondition Failed instead of deleting the row. See Conditional Requests / ETags for details.