Skip to main content

getGroups

client.jobs.getGroups(): Promise<JobGroup[]>

Lists all job groups.

Job groups organize related jobs into logical collections, making it easier to manage large numbers of jobs.

Parameters

No parameters.

Returns

Promise<JobGroup[]> — A promise that resolves to an array of objects

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.jobs.getGroups();
console.log(result);