Class: API

API()

API is the base class for all SDK modules.

Constructor

new API()

Source:

Methods

(async) sendGet(url, args, opts)

Make a get request to the Textile node
Parameters:
Name Type Description
url string The relative URL of the API endpoint
args Array.<string> An array of arguments to pass as Textile args headers
opts Object An object of options to pass as Textile options headers
Source:

(async) sendPost(url, args, opts, data)

Make a post request to the Textile node
Parameters:
Name Type Description
url string The relative URL of the API endpoint
args Array.<string> An array of arguments to pass as Textile args headers
opts Object An object of options to pass as Textile options headers
data Object An object of data to post
Source:

(async) sendPostMultiPart(url, args, opts, data)

Make a post request to the Textile node using a multi-part form
Parameters:
Name Type Description
url string The relative URL of the API endpoint
args Array.<string> An array of arguments to pass as Textile args headers
opts Object An object of options to pass as Textile options headers
data Object An object of data to post
Source: