import { IntunedClient } from "@intuned/client";const intunedClient = new IntunedClient({ apiKey: "<YOUR_API_KEY_HERE>", workspaceId: "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",});async function run() { const result = await intunedClient.project.queues.all("my-project"); // Handle the result console.log(result);}run();
import { IntunedClient } from "@intuned/client";const intunedClient = new IntunedClient({ apiKey: "<YOUR_API_KEY_HERE>", workspaceId: "aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee",});async function run() { const result = await intunedClient.project.queues.all("my-project"); // Handle the result console.log(result);}run();