POST/v1/4bridge/connector-types/{connectorType}/validate

Create connector types validate

Not yet documented — no summary in the API source.

RequiresAuthorization: Bearer sk_...tenant_id

Path parameters

connectorTypestringrequired

Request body application/json

configobjectnullable
{key}free-form JSONnullable

Any JSON value. Not validated against a schema.

secretsobjectnullable
{key}stringnullable

Responses

isValidboolean
errorsarray of stringnullable
curl --request POST \
  --url 'https://api.4comply.io/v1/4bridge/connector-types/string/validate' \
  --header 'Authorization: Bearer sk_...' \
  --header 'tenant_id: your-tenant-id' \
  --header 'Content-Type: application/json' \
  --data '{
  "config": {
    "key": {}
  },
  "secrets": {
    "key": "REDACTED"
  }
}'