Connector.restCall

Description

Performs a rest API call using a Rest Connector.

Input / Parameter

NameDescriptionInput TypeDefaultOptionsRequired

connector

The Rest Connector to be used.

Text

-

-

Yes

path

The additional path to append to the connector's url.

Text

-

-

No

method

The http request method.

Text

Get

Get, Patch, Put, Post, Delete

No

query

The query string for the endpoint.

Object

-

-

No

callType

The content type of the API.

Text

Raw

Form_Data, X_WWW_Form_URL_Encoded, Raw, Binary, JSON

No

headers

The query string for the endpoint.

Object

-

-

No

cookies

The cookies of the API call.

Object / List

-

-

No

resultType

The preferred result to return.

Text

String_UTF8

String_UTF8, Byte_Array

No

body

The body to pass along in the call.

Object / Text

-

-

No

attachment

The path to the selected file.

Object / List

-

-

No

extra

The stored value that is passed to all the callbacks.

Any

-

-

No

cookies (Object | List)

Cookies of the API call. Will contain a single object, or a list of one (1) or more objects which consist of:

KeyDescriptionInput TypeRequired

name

Name of the cookie.

Text

No

value

Contains the value of the cookie.

Text

Yes

attachment (Object | List)

The path to the selected file. Will contain a single object, or a list of one (1) or more objects which consist of:

KeyDescriptionInput TypeRequired

name

Optional name. If not specified, file name will be used.

Text

No

value

Contains the direct file path of the attachments.

Text

Yes

Output

DescriptionOutput Type

Returns the formatted information.

Object

Object

KeyDescriptionOutput Type

success

Boolean value to denote whether the function was executed successfully.

Text

message

The message to print.

Text

data

Any additional message or data to print.

Text

Callback

callback

The action performed if this function runs successfully.

DescriptionOutput Type

Returns an object with the information of the API call.

Object

Object

KeyDescriptionOutput Type

statusCode

The status code of the API call.

Number

result

The result of the API call.

Text

cookies

The cookies of the API call.

Object

errorCallback

The action performed if this function runs successfully.

DescriptionOutput Type

Returns an object with the information of the API call.

Object

Object

KeyDescriptionOutput Type

statusCode

The status code of the API call.

Number

errorMessage

The error message for unsuccessful API call.

Text

Video

Coming Soon.

Example

Coming Soon.

Steps

Coming Soon.

Result

Coming Soon.

Last updated