AddJobQueueGroup

Use this service to add a job queue group.

Required Parameters

JOBQUEUEGROUP resource

Parameter Key Value Type Parameter Description
groupName Alphanumeric string The name of the job queue group. Maximum length for strings is 10.
groupDescription Alphanumeric string The description of the job queue group. Default value is BLANK and the maximum length for strings is 10.

MEMBER resource

Parameter Key Value Type Parameter Description
memberName Alphanumeric string The name of an existing job queue or job queue group. Maximum length for strings is 10.
memberType Fixed values The type of group member. If the member is a job queue, the type must be JOBQUEUE. If the member is a job queue group, type must be GROUP. Fixed values are JOBQUEUE and GROUP.
Table 1. Optional parameter
Parameter Key Value Type Parameter Description
MEMBER Fixed values Supported child nodes configuration from the root MEMBER resource node. Fixed values are JOBQUEUEGROUP, MEMBER.

XML request format

Format of the request XML payload for POST method calls. Note that these must always be wrapped by <ACTION> nodes.

 <JOBQUEUEGROUP groupDescription="XXX" groupName="XXX" >
    <MEMBER memberName="XXX" memberType="group" >
    </MEMBER>
    <MEMBER memberName="XXX" memberType="jobQueue" >
    </MEMBER>
</JOBQUEUEGROUP>