create entity CRUD apis with writing a line of code
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
}
If-MatchA 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.