Reference
Remy Reference/agent/postToZapier
?

postToZapier

Send data to a Zapier Zap via webhook and return the response.
mindstudio.postToZapier({ webhookUrl, input }) → Result

Send data to a Zapier Zap via webhook and return the response.

Parameters
webhookUrl
string
RequiredZapier webhook URL to send data to
input
object
RequiredKey-value pairs to send as the JSON POST body
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.postToZapier({
  webhookUrl: /* ... */,
  input: /* ... */
});