Table of Contents

Description

The request object defines the structure of the request which can be sent to the XML API.

Structure

XML KeyOccursTypeFormatDescription
auth0 - 1objectUser object

The authentification

owner0 - 1objectUser objectThe subuser
task0 - 1objectTaskThe request

XML Example

<request>
    <auth>
		<user>USER</user>
		<context>CONTEXT</context>
		<password>PASSWORD</password>
	</auth>
    <owner>
		<user>SUBUSER</user>
		<context>SUBUSER_CONTEXT</context>
	</owner>
    <task>
		<code>CODE</code>
		<!-- ... -->
	</task>
    <bulk_limit>5</bulk_limit>
 </request>