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
Please help us with improving our documentation.
We appreciate all your feedback.