Get Specific Job Pool’s Details

Note: This SDK is currently in deprecation. Migrate to JavaScript SDK now.

Using the following SDK, you will be able to get the details of a particular Job Pool by either passing the name or the ID of the Job Pool to the getJobpool() SDK method.

copy
const jobpoolWithName = await jobScheduling.getJobpool('test'); // get jobpool with jobpool name
const jobpoolWithId = await jobScheduling.getJobpool('123456789'); // get jobpool with jobpool Id

Last Updated 2026-09-08 16:37:33 +0530 IST