Show examples in:
Retrieve a webhook call

Returns

Returns a webhook_call resource object.

Examples

Example Basic example
import { buildClient } from '@datocms/cma-client-node';
async function run() {
const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });
const webhookCallId = '42';
const webhookCall = await client.webhookCalls.find(webhookCallId);
console.log(webhookCall);
}
run();