<request> element
The <request> element is the root element for the body XML of a CICS® management client interface POST or PUT request.
In a POST request, the <request> element contains one
child <create> element. In a PUT request, the <request> element
can contain one child <update> element or one <action> element,
as shown in the example.
In a DELETE request, the <request> element is typically empty. If specified, the <request> element must contain one child <delete> element.
A CMCI request can contain only one <request> element.
Contains
- In a POST request: one <create> element
- In a PUT request: one <update> element or one <action> element
- In a DELETE request: one <delete> element
Example
The following example shows an install action for the BAS resource with name
ABCD. Notice that the <action> element is contained in a <request>
element.PUT http://exampledomain.com:12345/CICSSystemManagement/<RESOURCE NAME>/<CONTEXT>/?CRITERIA=NAME%3DABCD
<request>
<action name="INSTALL">
<parameter name="TARGET" value="SYSTEM1"/>
<parameter name="USAGE" value="LOCAL"/>
</action>
</request>