POST/v1/4bridge/connections

Create 4bridge connections

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Request body application/json

namestringnullable
connectorTypestringnullable
authTypestringnullable
descriptionstringnullable
businessUnitstringnullable
tagsarray of stringnullable
configobjectnullable
{key}free-form JSONnullable

Any JSON value. Not validated against a schema.

secretsobjectnullable
{key}stringnullable
credentialsfree-form JSONnullable

Any JSON value. Not validated against a schema.

Responses

idstringnullable
namestringnullable
connectorTypestringnullable
authTypestringnullable
descriptionstringnullable
statusstringnullable
statusMessagestringnullable
lastTestedAtstring (date-time)nullable
businessUnitstringnullable
tagsarray of stringnullable
isSystemManagedboolean
configobjectnullable
{key}free-form JSONnullable

Any JSON value. Not validated against a schema.

secretsobjectnullable
{key}stringnullable
secretFieldNamesarray of stringnullable
createdBystringnullable
updatedBystringnullable
createdAtstring (date-time)
updatedAtstring (date-time)
curl --request POST \
  --url 'https://api.4comply.io/v1/4bridge/connections' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Example name",
  "connectorType": "string",
  "authType": "string",
  "description": "Example text",
  "businessUnit": "string",
  "tags": [
    "string"
  ],
  "config": {
    "key": {}
  },
  "secrets": {
    "key": "REDACTED"
  },
  "credentials": {}
}'