Presidio Interview Question

What are the main HTTPS methods and their purposes?

Interview Answer

Anonymous

Aug 7, 2024

The main HTTPS methods include: GET: Retrieve data from the server. POST: Send data to the server to create a resource. PUT: Update a resource completely on the server. PATCH: Partially update a resource on the server. DELETE: Remove a resource from the server.

3