Web Services Developer's Guide → Web Services API Reference → SBM Application Web Services → Arguments → UserResponseOptions
UserResponseOptions holds the UserSingleResponseOptions type, as well as an enumeration to determine if a service should stop on failure and send an error message or continue processing.
Name | Type | Description |
---|---|---|
UserSingleResponseOptions | Extension. See UserSingleResponseOptions. | UserSingleResponseOptions extension base. Holds a name value pairing for future elements and enables you to limit the data returned in the response. |
multiOption | MultipleOption | Enumeration element that holds the option to continue processing or stop when an error is encountered. |
The UserResponseOptions contains the same funtionality as UserSingleResponseOptions, but it also enables you to specify an enumeration value that determines if the service should continue processing or stop when an error is encountered.
You use the following parameters in UserSingleResponseOptions to control service handling and the amount of data that is returned in the response:
In the sections parameter, specify one of the following enumeration options:
You can use a comma-separated list in specifiedSections to return only the sections of a user record that you want. For example:
<urn:specifiedSections>SECTION:STANDARD,SECTION:GROUPS</urn:specifiedSections>
This ensures that only the standard and groups sections of a user record are returned. Here are some of the possible sections you can specify in GetUsers:
The following XML shows UserResponseOptions in the <urn:options> element of the GetUsers call.
<urn:options> <urn:extraOption> <urn:name></urn:name> <urn:value></urn:value> </urn:extraOption> <urn:sections>SECTIONS-SPECIFIED</urn:sections> <urn:specifiedSections>SECTION:STANDARD</urn:specifiedSections> <urn:multiOption>CONTINUE-ON-FAILURE</urn:multiOption> </urn:options>
Copyright © 2007–2017 Serena Software, Inc. All rights reserved.