DELETE: Remove the Game
Understand how to apply the DELETE HTTP method to safely remove game records in a REST API. Explore idempotency concepts and practice deleting entries with appropriate server responses.
We'll cover the following...
We'll cover the following...
Using the DELETE method
The final method, the deletion command, simply calls the session’s DELETE method.
Idempotency
Recall that the DELETE method should be idempotent. Therefore, applying the method twice should have the same impact as ...