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 - OIC Utility to Reprocess Failed Real-Time Integration JSON Payloads

📌 Use Case In real-time OIC integrations, JSON payloads are exchanged with external systems via REST APIs. When such integrations fail (du...