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-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":""}}
@mwawrusch
mwawrusch / scottyapp-apps-request.json
Created October 27, 2011 14:54
scottyapp-apps-request
curl https://api.scottyapp.com/v1/organizations/martin_sunset/apps \
-H "Authorization: OAuth 22041c80355ec10b82d8aebcd2f8debd0b77b6ff54567fd4e285a722b1ef1e7a"
@mwawrusch
mwawrusch / scottyapp-apps-response.json
Created October 27, 2011 14:55
scottyapp-apps-response
{"total_count":1,"request_id":"","offset":0,"count":30,"collection":[{"_id":"4ea9040fc2db191749000008","accessible_by":[{"_id":"4ea9040fc2db191749000009","roles":["read","write","admin"],"user_id":"4e2937abc2db197ea1000001"}],"app_status":{"_id":"4ea9040fc2db19174900000a","is_setup_complete":false,"is_working":false,"is_working_is_error":false,"is_working_percentage":0},"created_at":"2011-10-27T00:11:11-07:00","creator_id":"4e2937abc2db197ea1000001","description":"My App","is_private":false,"name":"app1","owner_id":"4ea48bafc2db196b81000001","slug":"martin_sunset-x-x-app1","updated_at":"2011-10-27T00:11:11-07:00"}]}