Get Details of a Specific Job PoolAdmin Scope

Note: Ensure you have installed the required package to use this SDK method.

Pass the Job Pools ID or name of the required Job Pool to the getJobpool() SDK method to get its details.

The jobScheduling reference used in the code snippets below is the component instance created to perform these operations.

copy
const jobpoolWithName = await jobScheduling.getJobpool('test'); // Get job pool by name
const jobpoolWithId = await jobScheduling.getJobpool('123456789'); // Get job pool by ID

Last Updated 2026-07-02 14:51:41 +0530 IST