Configure action with two sequential webhooks then function

Is there a way for an action to run two webhooks then a function afterwards? Currently, if I add two webhooks then an function to a webhook, the function gets sandwiched between the webhooks.

I’m unable to chain the API calls in a single webhook due to other non-product limitations.

Action types only support setting up one synchronous (pre-function) webhook. However, with external functions (see https://www.palantir.com/docs/foundry/data-connection/external-functions/) it is now possible to call webhooks directly from within your function. You could call the webhook at the start of the function.

1 Like