Valid URL with HTTP scheme and host.
Options to change how your request works.
Performs an HTTP GET request for the URL and options (optional).
Valid URL with HTTP scheme and host.
Options to change how your request works.
Performs an HTTP HEAD request for the URL and options (optional).
Valid URL with HTTP scheme and host.
Options to change how your request works.
Performs an HTTP OPTIONS request for the URL and options (optional).
Valid URL with HTTP scheme and host.
Options to change how your request works.
Performs an HTTP PATCH request for the URL, data, and options (optional).
By default, data will be JSON.stringified
, unless params
or other options are used.
Valid URL with HTTP scheme and host.
Data to be sent with your request.
Options to change how your request works.
Performs an HTTP POST request for the URL, data, and options (optional).
By default, data will be JSON.stringified
, unless params
or other options are used.
Valid URL with HTTP scheme and host.
Data to be sent with your request.
Options to change how your request works.
Performs an HTTP PUT request for the URL, data, and options (optional).
By default, data will be JSON.stringified
, unless params
or other options are used.
Valid URL with HTTP scheme and host.
Data to be sent with your request.
Options to change how your request works.
Generated using TypeDoc
Performs an HTTP DELETE request for the URL and options (optional).
{TypeError} when URL or options are not valid.
{SkillHttpError} when status code is NOT 200-299.
{SkillHttpError} when network or transient errors.
{Error} when host cannot be resolved.
{Error} when domain is restricted by organization settings.
const apiResponse: SkillHttpResponse<unknown> = await HttpPowers.del("https://example.com/somedata");