GET
/
v2
/
workspaces
/
{workspace_id}
/
webhooks
/
test
JavaScript
import Honcho from '@honcho-ai/core';

const client = new Honcho({
  apiKey: 'My API Key',
});

const response = await client.workspaces.webhooks.testEmit('workspace_id');

console.log(response);
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string
required

Workspace ID

Response

200
application/json

Successful Response

The response is of type any.