Tuesday, February 15, 2022

Which HTTP methods are called Idempotent?

An HTTP method is idempotent if an identical request can be made once or several times in a row with the same effect while leaving the server in the same state. 

Idempotents methods: GET, HEAD, PUT, and DELETE.

Non-Idempotent methods: POST. PATCH is not necessarily idempotent, although it can be.

No comments:

Post a Comment

Featured Post

OIC - Padding leading zeros to a number field using xslt format-number()

In many payment-related integrations, credit card numbers often arrive as plain numeric strings. For security and compliance—and to meet tar...