Users

Choose a section from the menu at the right

Users

This resource represents users. Users can only be accessed on an individual profile basis, it is not possible to browse over all registered users for privacy protection reasons.

GET /users/[user_name]

This method allows you to retrieve a specific user through its human readable identifier (user_name). It returns either a User object with a status code 200 (OK) or an error with status code 404 (NOT FOUND).

GET URL

http://api.triponadeal.com/v1/users/[user_name]?access_token=[your_access_token]

User Object

user_name (string)

The user name for the user.

image_url (string)

An url linking to the users image. This parameter is never null or empty, but may contain a reference to a placeholder image.

is_placeholder_image (bool)

A boolean value indicating whether the image_url parameter is a placeholder image.

twitter_name (string)

The twitter user id for the user. Currently this is identical to the user_name, but this might change in the future, in which case this value might become null for some users.

display_name (string)

The full name of the user. Can be the real name or some nick.

profile_url (string)

The link to the profile url (html) of that user. Always use this link, never compose the profile url yourself.

url (string)

The canonical object reference.

Sample