Skip to content

Instantly share code, notes, and snippets.

View mwawrusch's full-sized avatar

Martin Wawrusch mwawrusch

View GitHub Profile
@mwawrusch
mwawrusch / scottyapp-organizations-request.json
Created October 27, 2011 14:02
scottyapp-organizations-request
curl https://api.scottyapp.com/v1/organizations \
-H "Authorization: OAuth 22041c80355ec10b82d8aebcd2f8debd0b77b6ff54567fd4e285a722b1ef1e7a"
@mwawrusch
mwawrusch / scottyapp-organizations-response.json
Created October 27, 2011 14:02
scottyapp-organizations-response
{"total_count":2,"request_id":"","offset":0,"count":30,"collection":[{"_id":"4ea48bafc2db196b81000001","description":"hjghjghj\r\n","name":"martin_sunset","slug":"martin_sunset"},{"_id":"4ea900b4c2db191749000004","description":null,"name":"ohmyg","slug":"ohmyg"}]}
@mwawrusch
mwawrusch / scottyapp-organizations-get-request.json
Created October 27, 2011 14:03
scottyapp-organizations-get-request
curl https://api.scottyapp.com/v1/organizations/ohmyg \
-H "Authorization: OAuth 22041c80355ec10b82d8aebcd2f8debd0b77b6ff54567fd4e285a722b1ef1e7a"
@mwawrusch
mwawrusch / scottyapp-organizations-get-response.json
Created October 27, 2011 14:03
scottyapp-organizations-get-response
{"canonicalPath":"/organizations/ohmyg","name":"ohmyg","slug":"ohmyg","description":null,"creator":{"userName":"ohmyg","canonicalPath":"/ohmyg","avatarUrl30":"http://gravatar.com/avatar/72bdfd1690fe136bdd5fe911a7c583d7.png?s=30"},"apiStatus":{"request_id":""}}
@mwawrusch
mwawrusch / scottyapp-organizations-post-request.json
Created October 27, 2011 14:04
scottyapp-organizations-post-request
curl https://api.scottyapp.com/v1/organizations \
-X POST -d '{"name" : "org2","description" : "Another organization"}' \
-H "Authorization: OAuth 22041c80355ec10b82d8aebcd2f8debd0b77b6ff54567fd4e285a722b1ef1e7a"
@mwawrusch
mwawrusch / scottyapp-organizations-post-response.json
Created October 27, 2011 14:04
scottyapp-organizations-post-response
{"canonicalPath":"/organizations/org2","name":"org2","slug":"org2","description":"Another organization","creator":{"userName":"martin_sunset","canonicalPath":"/martin_sunset","avatarUrl30":"http://a2.twimg.com/profile_images/247413746/People_MartinWawrusch_Small_normal.jpg"},"apiStatus":{"request_id":""}}
@mwawrusch
mwawrusch / scottyapp-organizations-put-request.json
Created October 27, 2011 14:05
scottyapp-organizations-put-request
curl https://api.scottyapp.com/v1/organizations/martin_sunset \
-X PUT -d '{"description" : "A nice description"}' \
-H "Authorization: OAuth 22041c80355ec10b82d8aebcd2f8debd0b77b6ff54567fd4e285a722b1ef1e7a"
@mwawrusch
mwawrusch / scottyapp-organizations-put-response.json
Created October 27, 2011 14:05
scottyapp-organizations-put-response
{"canonicalPath":"/organizations/martin_sunset","name":"martin_sunset","slug":"martin_sunset","description":"A nice description","creator":{"userName":"martin_sunset","canonicalPath":"/martin_sunset","avatarUrl30":"http://a2.twimg.com/profile_images/247413746/People_MartinWawrusch_Small_normal.jpg"},"apiStatus":{"request_id":""}}
@mwawrusch
mwawrusch / scottyapp-organizations-delete-request.json
Created October 27, 2011 14:06
scottyapp-organizations-delete-request
curl https://api.scottyapp.com/v1/organizations/org2 \
-X DELETE \
-H "Authorization: OAuth 22041c80355ec10b82d8aebcd2f8debd0b77b6ff54567fd4e285a722b1ef1e7a"
@mwawrusch
mwawrusch / scottyapp-organizations-delete-response.json
Created October 27, 2011 14:06
scottyapp-organizations-delete-response
{"canonicalPath":"/organizations/org2","name":"org2","slug":"org2","description":"Another organization","creator":{"userName":"martin_sunset","canonicalPath":"/martin_sunset","avatarUrl30":"http://a2.twimg.com/profile_images/247413746/People_MartinWawrusch_Small_normal.jpg"},"apiStatus":{"request_id":""}}