Junior
What HTTP methods have you worked with in REST?
sobes.tech AI
Answer from AI
GET, POST, PUT, PATCH, DELETE, OPTIONS.
GET: Retrieve data from the server. POST: Send data to create a new resource. PUT: Update or create a resource, replacing it entirely. PATCH: Partially update a resource. DELETE: Delete a resource. OPTIONS: Get information about supported methods and other interaction options with the resource.