POST
/
connector-config
JavaScript
import Openint from '@openint/sdk';

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

const response = await client.createConnnectorConfig({ connector_name: 'connector_name' });

console.log(response);
{
  "id": "<string>",
  "created_at": "<string>",
  "updated_at": "<string>",
  "org_id": "<string>",
  "display_name": "<string>",
  "disabled": true,
  "metadata": {},
  "connector_name": "<string>",
  "config": {
    "oauth": {
      "client_id": "<string>",
      "client_secret": "<string>",
      "scopes": [
        "<string>"
      ],
      "redirect_uri": "<string>"
    }
  }
}

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}

Body

application/json

Response

200
application/json

Successful response

Connector specific data