Get Specific Job Pool’s Details

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 get_jobpool() SDK method.

Get Job Pool Details Using Job Pool ID

    
copy
jobpool = job_scheduling.get_jobpool(‘1234567890’) # get jobpool with the jobpool id “1234567890”

Get Job Pool Details Using Job Pool Name

    
copy
jobpool = job_scheduling.get_jobpool(’test’) # get jobpool with the jobpool name “test”

Last Updated 2025-06-20 16:21:48 +0530 +0530