Skip to content

Http.Patch

Name Mandatory Description Default Type
⬅️ Input The input for this shard should either be none, string, bytes, or string table to send in the body of the PATCH request. None{String}BytesString
Output ➡️ The output is the response from the server through the PATCH request as a string, byte array, or table (if the FullResponse parameter is set to true). {status: Int headers: {String} body: Bytes}Bytes{status: Int headers: {String} body: String}StringObject
URL No The url to request to. `` StringVar(String)
Headers No If a table of headers is provided, it will be used as is; if no headers are provided, a Content-Type header will be derived based on the input type. none None{String}Var({String})
Timeout No How many seconds to wait for the request to complete. 10 Int
Bytes No If instead of a string the shard should output bytes. false Bool
FullResponse No If the output should be a table with the full response, including headers and status. false Bool
AcceptInvalidCerts No If we should ignore invalid certificates. This is useful for testing but should not be used in production. false Bool
Retry No How many times to retry the request if it fails. 0 Int
KeepAlive No If the client instance should be kept alive, allowing connection reuse for multiple requests. The client won't be closed until this shard cleans up. false Bool
Streaming No If the response should be streamed, in which case the output will be an object to use with the Http.Stream shard. false Bool
Backoff No How many seconds to wait between retries. Defaults to 1 second. 1 Int

This shard sends a HTTP PATCH request to the specified URL and outputs the response.

Details

A HTTP PATCH request is a method of sending data to a server for partial modification of a resource.

Unlike PUT, which replaces the entire resource, PATCH only applies partial modifications to the resource.

This request is generally considered non idempotent. But its idempotency depends on the PATCH instructions.

This shard can accept a string table, string or bytes as input and will modify the body of the PATCH request accordingly. - none : no body is attached to the request - string : The string is attached to the body as is and treated as a JSON string. - string table : Both key and values need to be strings. The shard constructs a URL encoded string using the key and value pairs from the table and attaches it to the body of the request. - bytes : The bytes are attached to the body as is.

If the output of the shard is a table, it will have the following format:

{
  status: Int,
  headers: Table(String, String),
  body: String or Bytes
}
- status: An integer representing the HTTP status code. - headers: A table where both keys and values are strings, representing the response headers. - body: Either a string or bytes (depending on the asBytes parameter), containing the response body.