Skip to main content

7 docs tagged with "Request"

View all tags

Request()

A module for performing network request to the internet that was introduced on version 1.0.0.31

Request():delete()

Execute a DELETE request and return a Response object. This method is used to delete a resource from a server.

Request():get()

Execute a GET request and return a Response object. This method is used to retrieve data from a specified URL.

Request():patch()

Execute a PATCH request and return a Response object. This method is used to partially update a resource on a server.

Request():post()

Execute a POST request and return a Response object. This method is used to send data to a server, typically to create a new resource.

Request():put()

Execute a PUT request and return a Response object. This method is used to completely replace a resource on a server.

Request():setParameter()

Set a parameter for the request body (used with POST/PUT/PATCH requests). This method allows you to add data that will be sent in the request body.