API - Get a users ideas list

Returns a list of ideas that the user has added

URL: http://api.smynx.com/users/:id/ideas

HTTP Method: Get

Parameters

  • key - Your API key Required
  • id - The ID of the user Required
  • page - Results page number (default is 1)

Error codes

  • 401 - Not Authorized
  • 404 - Not Found
  • 500 - Internal Server Error

Available API methods

The following API methods are available to use.

Ideas

Locations

Try-outs

Users

Example Response

<ideas type="array">
  <idea>
    <description>A good indoor sport both in summer and winter, that can be played as a casual knock around or a serious game if you are feeling competitive.</description>
    <categories type="array">
      <category>
        <name>Social</name>
      </category>
      <category>
        <name>Active</name>
      </category>
    </categories>
    <id type="integer">32</id>
    <max_people>4 or more</max_people>
    <min_people>2</min_people>
    <name>Play badminton</name>
    <tags type="array">
      <tag>
        <name>sport</name>
      </tag>
      <tag>
        <name>badminton</name>
      </tag>
    </tags>
    <updated_at>Tue Jun 24 11:36:05 UTC 2008</updated_at>
    <user_id type="integer">6</user_id>
  </idea>
  <idea>
    <description>If you enjoy your music and don&#8217;t mind camping outside without showering for a few days, then get some tickets for a muddy festival.</description>
    <categories type="array">
      <category>
        <name>Social</name>
      </category>
      <category>
        <name>Worthwhile</name>
      </category>
    </categories>
    <id type="integer">7</id>
    <max_people>4 or more</max_people>
    <min_people>2</min_people>
    <name>Go to a music festival</name>
    <tags type="array">
      <tag>
        <name>music</name>
      </tag>
      <tag>
        <name>mud</name>
      </tag>
    </tags>
    <updated_at>Fri Jun 06 10:23:43 UTC 2008</updated_at>
    <user_id type="integer">6</user_id>
  </idea>
</ideas>