HTTP Methods

Information about all HTTP methods.

  • GET

    Request the resource with no side effects on the server.

  • HEAD

    Identifical to a GET but without the response body.

  • POST

    Submit data to the resource, possibly causing a side effect on the server.

  • PUT

    Replace the current resource with the request payload.

  • PATCH

    Apply a partial update to the resource.

  • DELETE

    Delete the resource.

  • CONNECT

    Create a tunnel to the resource.

  • OPTIONS

    Describe communication options for the resource.

  • TRACE

    Perform a test along the path to the resource.