API Endpoint: List a User's Guides
List all guides that a user has authored or contributed to.
Request
GET /api/0.1/user/{userid}/guides Route Parameters
| userid | Required. Integer. The userid of the user to retrieve. Can be obtained from a call to /api/users. |
GET Parameters
| offset | Optional. Integer. The number of guides to skip from the beginning. Defaults to 0. Range: [0, infinity). |
| limit | Optional. Integer. The number of guides to list in a single response. Defaults to 20. Range: [1, 200]. |
| jsonp | Optional. String. The name of a Javascript function to call with the results. See JSONP. |
Example Request
/api/0.1/user/84700/guides?offset=1&limit=2
Example Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | [
{
"guideid": 2183,
"device": "iPad Wi-Fi",
"thing": false,
"title": "iPad Wi-Fi Teardown",
"author": "Miroslav Djuric",
"author_userid": 17
},
{
"guideid": 902,
"device": "PalmOne",
"thing": false,
"title": "PalmOne Teardown",
"author": "MMiller8846",
"author_userid": 91793
}
]
|