Setting job notice expiration for a user
Use the User element of CreateUser to set the user job notice expiration attribute. You can set the expiration time for a success notice or a failure notice when you create or update a user. Express the expiration time in minutes. If you do not set the expiration time or set it to 0, the value specified for all users applies. To set the user notices to never expire, set the value to 0xffffffff. In the following example, the user success notices expire in three days and failure notices never expire:
<SOAP-ENV:Body>
<Administrate>
<Transaction>
<CreateUser>
<User>
<SuccessNoticeExpiration>4320
</SuccessNoticeExpiration>
<FailureNoticeExpiration>0xffffffff
</FailureNoticeExpiration>
</User>
</CreateUser>
</Transaction>
</Administrate>
</SOAP-ENV:Body>