Put
api.http.Put(url, headers, body)
Sends an HTTP request to an endpoint. It uses the standard HTTP method PUT, to indicate that the request wishes to create or make an idempotent update to information.
Parameters:
Name
Type
Description
url
string
The address of the endpoint to send the request to.
headers
table
Provides additional information to the endpoint, on how it should respond to the request.
body
string
The message to be sent to the endpoint, with information to create or update its data store.
Returns:
Type
Description
int
The HTTP code relaying the success of the request or otherwise.
string
The body of the HTTP response to the request.
Example:
Send a PUT request to an endpoint, updating its data.
Last updated