API - Get connectors details

In the beebox, you can set up many connectors. Each connector has private data, like login password, etc.

URL

(GET) /api/details/connectors?token=

PARAMETERS

Parameters are:

token

The session token obtained when connecting.

 

RESULTS

The method returns JSON and HTTP status 200. Other HTTP status values indicate an error.

EXAMPLE

A typical result may look like:

{
    "enabled": true,
    "role": "Plugin",
    "login": "login",
    "password": "pass",
    "comments": null,
    "deliveryCallbackUrl": null,
    "ipAddresses": null,
    "urls": []
}

 

It’s also possible to update this data by executing the following method

URL

(PUT) /api/details/connectors

Similiar document as that you see should be uploaded as binary data, with additional index token (which is authentication token)