This page last changed on Sep 07, 2011 by kristin.bradley@involver.com.

person

Person that comes back from the Get Satisfaction API.

Attributes

name type description
person.at_sfn string URL of the Get Satisfaction site for the person
person.avatar string URL of the person's avatar
person.avatar_url_large string URL of large-sized avatar
person.avatar_url_medium string URL of medium-sized avatar
person.avatar_url_mini string URL of mini-sized avatar
person.avatar_url_small string URL of small-sized avatar
person.canonical_name string appears to be person's slug
person.facebook_id integer Person's Facebook ID
person.id integer Person ID
person.name string Person's name
person.url string URL of the Get Satisfaction API for the person

Examples

{% for member in get_satisfaction.newest_people limit:3 %}
  <div>
    {% if member.facebook_id %}
      <fb:profile-pic uid="{{ member.facebook_id }}" size="q"></fb:profile-pic><br>
      <fb:name uid="{{ member.facebook_id }}" capitalize="true" firstnameonly="true"></fb:name>
    {% else %}
      <img src="{{ member.avatar }}" alt="{{ member.name }}" width="50" height="50"><br>
      {{ member.name | link_to: member.at_sfn }}
    {% endif %}
  </div>
{% endfor %}
Document generated by Confluence on Feb 12, 2013 09:09