How to obtain a list of webhooks using the Localazy API client?

Using the @localazy/api-client you can interact with the Localazy API in an easier way. Below is an example for obtaining a list of webhooks.

import { ApiClient } from '@localazy/api-client';

const api = new ApiClient({ authToken: 'project-token' });
const webhooks = await api.webhooks.list({
  project: 'project-id', // or Project object
});

Learn more about the Localazy API client on GitHub

Was this article helpful?

Please help us with improving our documentation.
We appreciate all your feedback.

Category

Last updated

07/03/2025