The jobqueueGetQueues Web API Method
Get a list of all Job Queue queues.
Version: 1.10
Required Permissions: Full
HTTP method: GET
Supported by Editions: Zend
Server
Request Parameters: None
Expected Response Code: 200
OK - Returned for a successful request.
Possible Action Specific Error Codes: None.
Example
|
RequestGET /ZendServer/Api/jobqueueGetQueues
Response<?xml version="1.0" encoding="UTF-8"?> <zendServerAPIResponse xmlns="http://www.zend.com/server/api/1.10"> <requestData> <apiKeyName> <![CDATA[admin]]> </apiKeyName> <method>jobqueueGetQueues</method> </requestData> <responseData> <queues> <queue> <id>53</id> <name>qwerty</name> <priority>2</priority> <status>2</status> <max_http_jobs>5</max_http_jobs> <max_wait_time>5</max_wait_time> <http_connection_timeout>30</http_connection_timeout> <http_job_timeout>122</http_job_timeout> <http_job_retry_count>11</http_job_retry_count> <http_job_retry_timeout>2</http_job_retry_timeout> <running_jobs_count>5</running_jobs_count> <pending_jobs_count>3</pending_jobs_count> </queue> <queues> ... </queue> ... </queues> </responseData> </zendServerAPIResponse>
|