For the complete documentation index, see llms.txt. This page is also available as Markdown.

Integration

Integration type — exchange data with external systems and services. Use it to send or receive data through webhooks, APIs, SFTP, and AS2, as well as process integration-specific callbacks.

webhook-sender

Sends data to a configured webhook endpoint.

{
  "type": "webhook-sender",
  "configSchema": "{\"$schema\":\"http://json-schema.org/draft-07/schema\",\"additionalProperties\":false,\"title\":\"Callback\",\"type\":\"object\",\"properties\":{\"retries\":{\"default\":3,\"description\":\"Number of retries\",\"maximum\":10,\"type\":\"integer\",\"minimum\":0},\"inputFilename\":{\"description\":\"Input filename\",\"type\":\"string\"},\"url\":{\"format\":\"uri\",\"description\":\"URL of receiver\",\"type\":\"string\"},\"timeout\":{\"default\":5000,\"description\":\"Timeout in ms\",\"maximum\":60000,\"type\":\"integer\",\"minimum\":100},\"successCode\":{\"default\":200,\"description\":\"Success code\",\"type\":\"integer\"}},\"required\":[\"url\"]}",
  "multipleInput": false,
  "outputParam": []
}

sftp-uploader

Uploads a file through SFTP.

{
  "type": "sftp-uploader",
  "configSchema": "{\"$schema\":\"http://json-schema.org/draft-07/schema\",\"additionalProperties\":false,\"title\":\"SFTP Uploader\",\"type\":\"object\",\"properties\":{\"path\":{\"description\":\"Path with a filename (expression can be used)\",\"type\":\"string\"},\"inputFilename\":{\"description\":\"Input filename\",\"type\":\"string\"}},\"required\":[\"path\"]}",
  "multipleInput": false,
  "outputParam": []
}

api-caller

Sends a GET or POST request to an external API.

sftp-receiver

Receives files through SFTP and filters them using a configured matching pattern.

vchasno-callback-checker

Checks a Vchasno callback using the configured document type and configuration ID.

as2-sender

Sends data to an external system through AS2.

as2-receiver

Receives data through AS2.

webhook-receiver

Receives data through a webhook.

Last updated

Was this helpful?