Skip to main content
POST
/
api
/
service
/
webhook
/
trigger
JavaScript
import Ivy from '@getivy/node-sdk';

const client = new Ivy({
  apiKey: process.env['IVY_API_KEY'], // This is the default and can be omitted
});

const response = await client.webhook.trigger({ id: {} });

console.log(response.success);
{
  "success": true
}

Authorizations

X-Ivy-Api-Key
string
header
required

API key for authentication

Body

application/json
id
any
required

The unique identifier for the webhook to trigger.

Response

200 - application/json

Success response indicating webhook trigger status

success
boolean
required

Indicates whether the webhook was successfully triggered