GET
/
connector-config
/
{id}
JavaScript
import Openint from '@openint/sdk';

const client = new Openint({
  token: 'My Token',
});

const response = await client.getConectorConfig('ccfg_');

console.log(response);
{
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "org_id": "<string>",
  "display_name": "<string>",
  "disabled": true,
  "metadata": {},
  "connector": {
    "name": "<string>",
    "display_name": "<string>",
    "logo_url": "<string>",
    "stage": "alpha",
    "platforms": [
      "web"
    ],
    "schemas": {
      "connector_config": "<any>",
      "connection_settings": "<any>",
      "integration_data": "<any>",
      "webhook_input": "<any>",
      "pre_connect_input": "<any>",
      "connect_input": "<any>",
      "connect_output": "<any>"
    },
    "auth_type": "BASIC",
    "required_scopes": [
      "<string>"
    ],
    "openint_default_scopes": [
      "<string>"
    ],
    "openint_allowed_scopes": [
      "<string>"
    ],
    "scopes": [
      {
        "scope": "<string>",
        "display_name": "<string>",
        "description": "<string>"
      }
    ],
    "has_openint_credentials": true
  },
  "integrations": {},
  "connection_count": 123
}

Authorizations

Authorization
string
header
required

Organization API Key available in the settings page of the OpenInt Console or Customer API Key or Token Customer authentication token created using the create customer token API. It is passed in the authorization header with format: Bearer {token}

Path Parameters

id
string
required

The id of the connector config, starts with ccfg_

Query Parameters

expand
enum<string>[]

Response

Successful response

Connector specific data

id
string
required
created_at
string
required
updated_at
string
required
org_id
string
required
display_name
string | null
required
disabled
boolean | null
required
connector_name
string
required
Allowed value: "accelo"
config
object
required
metadata
object | null

JSON object can can be used to associate arbitrary metadata to avoid needing a separate 1-1 table just for simple key values in your application. During updates this object will be shallowly merged

connector
object
integrations
object
connection_count
number