Define a Pass-Through Trigger

Learn how to define a simple trigger that passes the incoming event payload directly to the integration flow, without performing any transformation or modification.

After creating this trigger, you have to manually register it with the target application.

Prerequisite:

You must define a schema representing the trigger object, to be presented to the Oracle Integration orchestration or mapper.

  1. In VS Code, click Explorer Explorer icon on the sidebar.
    The directory structure of your workspace folder is displayed.
  2. Within the definitions directory listing, click the adapter definition document that you want to work on.
    The document is displayed in the VS Code editor.
  3. In the triggers section of the document, create a skeleton trigger code.
  4. Set the type property to webhook.
  5. Specify the request method.
  6. Specify the request schema.

    Sample code:

    "triggers":{
       "pageChangeEvent": {
          "displayName": "Wiki Page Updated Event",
          "description": "This trigger detects when a Wiki Page Updated Event is raised.",
          "type": "webhook",
          "httpMethod": "POST",
          "request": {
            "schemaType": "application/schema+json",
            "schema": {
              "$ref": "#/schemas/eventSchema"
            }
          }
        }
    }