Skip to content

HTTP Requests HTTP Requests: Inputs & Outputs

Summary

Each plugin uses a set of dictionaries to store data.

These are used by plugin actions as both inputs and outputs.

This page will cover:

  • The dictionaries used in this plugin
  • The information each dictionary contains

Info

See JSON APIs for each action's inputs & outputs.

Dictionary Types

BasicAuth

Contains HTTP basic auth parameters to the following request types:

All BasicAuth Keys

username: The basic authentication username.

password: The basic authentication password.

JsonResponse

Contains HTTP response data from the following request types:

All JsonResponse Keys

status_code: The response status code as an integer.

headers: A dictionary containing the response headers.

cookies: A dictionary containing the response cookies.

json: The JSON response to the request.