Skip to content
For the complete documentation index, see llms.txt. Markdown versions of documentation pages are available by appending .md to the page URL.
Primary navigation

Unwrap

client.webhooks.unwrap(RequestOptionsoptions?): void
Function

Validates that the given payload was sent by OpenAI and parses the payload.

Unwrap

import OpenAI from 'openai';

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

await client.webhooks.unwrap();
Returns Examples