Horje
delete request body Code Example
delete request body
read this content: https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/DELETE
add body to delete request
Using DELETE with a Body is risky... I prefer this approach for List Operations over REST:

Regular Operations

GET /objects/ Gets all Objects

GET /object/ID Gets an Object with specified ID

POST /objects Adds a new Object

PUT /object/ID Adds an Object with specified ID, Updates an Object

DELETE /object/ID Deletes the object with specified ID

All Custom actions are POST

POST /objects/addList Adds a List or Array of Objects included in body

POST /objects/deleteList Deletes a List of Objects included in body

POST /objects/customQuery Creates a List based on custom query in body

If a client doesn't support your extended operations they can work in the regular way.




Whatever

Related
kljlk Code Example kljlk Code Example
how to add an svg icon in flutter Code Example how to add an svg icon in flutter Code Example
all_files Code Example all_files Code Example
Which parameter indicates that the container in the por should not be replaced if it terminates Code Example Which parameter indicates that the container in the por should not be replaced if it terminates Code Example
Bootstrap Card Wrap Code Example Bootstrap Card Wrap Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7