Displaying survey takers

Options

We're trying to have a display page with the names and locations (we usually want first name, city, state) of people who respond to a survey. We can't find any way to make this happen -- any ideas?

Tagged:

Comments

  • One option to consider is using the getGroupMembers API on a third party server to display the people who responded to the survey. This will require a little (ok, maybe more than a little) technical know how of server side scripting and the Convio API but it would definately do what you need. The process would basically include:

    1) Design the survey so it adds the constituents who complete it into a group.

    2) Create a web page that will use the getGroupMembersAPI to call the constituent data (first name, zipcode, state, etc)

    3) Dispay the data on the webpage designed in step 2.

    More information about configuring the Server-side APIs can be found at on the Customer Center.

  • Corey Pudhorodsky:

    One option to consider is using the getGroupMembers API on a third party server to display the people who responded to the survey. This will require a little (ok, maybe more than a little) technical know how of server side scripting and the Convio API but it would definately do what you need. The process would basically include:

    1) Design the survey so it adds the constituents who complete it into a group.

    2) Create a web page that will use the getGroupMembersAPI to call the constituent data (first name, zipcode, state, etc)

    3) Dispay the data on the webpage designed in step 2.

    More information about configuring the Server-side APIs can be found at on the Customer Center.

    Corey - Is there someplace I can go to see some sample code using the getGroupMembers API? I am trying to incorporate into our .Net website.

  • JimHouse :

    Corey - Is there someplace I can go to see some sample code using the getGroupMembers API? I am trying to incorporate into our .Net website.

    At this time I don't think we have any .Net sample code for any of the APIs. Basically what you'll need to do is serialize the xml or json data that you get back from the getGroupMembers method into a dataset that you can display/work with.

    Once you start working with code, you might want to post examples of what you're doing on the community and maybe others with .Net experaince can reply with advice.

Categories