Class: Block

Block(opts)

Block is an API module for managing Textile blocks

Constructor

new Block(opts)

Parameters:
Name Type Description
opts ApiOptions API options object
Source:

Extends

Methods

(async) addComment(blockId, comment, optionsopt)

Add a comment onto a Textile block object
Parameters:
Name Type Attributes Description
blockId string ID of the block
comment string Comment to add
options options <optional>
Extra options to pass in the headers
Source:

(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
Inherited From:
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
Inherited From:
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
Inherited From:
Source: