Javascript
import Ivy from '@getivy/node-sdk'; const client = new Ivy({ apiKey: 'My API Key', }); const response = await client.webhook.subscription.ping({ id: {} }); console.log(response.id);
{ "id": "<any>", "success": true, "response": "<any>", "statusCode": 123, "date": "<any>" }
Sends a test ping to verify webhook subscription endpoint connectivity.
API key for authentication
Returns the ping result with response details
The response is of type object.
object
Was this page helpful?