Share via


ListPolls Message

This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.

Reports the polling results recorded in a meeting.

Components

Component Type

XML Element

Request

ListPollsRequest

Reply

ListPollsReply

Remarks

A caller must be a member of the Administrator role or be the organizer that owns the meeting.

Examples

The following example shows how to get a report of polls taken during the strategy meeting.

The following shows a request sent to a conference center.

<PlaceWareConfCenter authUser="apiuser" authPassword="Pa$$w0rd">
  <ListPollsRequest>
    <StringQuery fieldName="mid" operator="=" value="bvntuc1ix4mr"/>
  </ListPollsRequest>
</PlaceWareConfCenter>

The following shows a reply returned from the conference center.

<PlaceWareConfCenter>
   <ListPollsReply>
      <Poll createTime="2000-07-28T16:07:21Z"
         question="What's the best way to advertise this new product?" >
         <Choices>
            <Choice choice="1" text="Radio" />
            <Choice choice="2" text="Television" />
            <Choice choice="3" text="Web site" />
            <Choice choice="4" text="Direct mail" />
         </Choices>
         <Voters>
            <Voter vid="1kghubzjwdm23">
               <Vote choice="2" />
               <Vote choice="0" />
            </Voter>
         </Voters>
      </Poll>
   </ListPollsReply>
</PlaceWareConfCenter>

Only one poll is taken during the meeting. The question is "What's the best way to advertise this new product?" and the possible choices are:

  • Radio

  • Television

  • Web site

  • Direct mail

The reply shows that only one visitor voted and that the voter first chose Television, and then cleared the vote. The ListVisitors message can be used to associate the name of the user with the vid.

See Also

Concepts

ListPollsRequest Element

ListPollsReply Element

ListVisitors Message