POST
/
api
/
service
/
webhook-subscription
/
ping
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>"
}

Authorizations

X-Ivy-Api-Key
string
header
required

API key for authentication

Body

application/json

Response

200 - application/json

Returns the ping result with response details

The response is of type object.