UserIdentifierEx

Description

The UserIdentifierEx type holds the identification information for one or more users. The UserIdentifierEx type parameters are listed below.

Parameters

Name Type Description
id UserIdentifier Holds the complete identification information for a user.
extendedData ExtendedData Placeholder for future arguments.

Usage

The UserIdentifierEx type is used to uniquely identify one or more users. The UserIdentifierEx type contains complete identification information about one or more users (including display names, IDs, and UUIDs). UserIdentifierEx is used to specify multiple users in a single call or response.

XML

The following XML shows UserIdentifierEx as seen in a typical call.

<urn:user>
    <urn:displayName>Joe Manager</urn:displayName>
    <urn:id></urn:id>
    <urn:uuid></urn:uuid>
</urn:user>
<urn:user>
    <urn:displayName>Chad Support</urn:displayName>
    <urn:id></urn:id>
    <urn:uuid></urn:uuid>
</urn:user>

The following XML shows UserIdentifierEx as seen in the GetGroupMembers response.

<ae:member>
   <ae:id xsi:type="ae:UserIdentifier">
      <ae:displayName>Joe Manager</ae:displayName>
      <ae:id>2</ae:id>
      <ae:uuid>85a33f0b-9542-43fe-90c1-e152eeea777f</ae:uuid>
   </ae:id>
</ae:member>
<ae:member>
   <ae:id xsi:type="ae:UserIdentifier">
      <ae:displayName>Carmen Chief Officer</ae:displayName>
      <ae:id>10</ae:id>
      <ae:uuid>c4a1c377-569c-469a-913b-9e1e94e88f26</ae:uuid>
   </ae:id>
</ae:member>