Skip to content

Instantly share code, notes, and snippets.

@sebdeckers
Created June 2, 2013 10:47
Show Gist options
  • Save sebdeckers/5693282 to your computer and use it in GitHub Desktop.
Save sebdeckers/5693282 to your computer and use it in GitHub Desktop.
Endpoints draft
GET /organizations/
Response: [{
id: String,
name: String,
email: String,
}*]
GET /walls/?organization=:id
Response: [{
id: String,
name: String
}*]
GET /stickies/?wall=:id
Response: [{
id: String,
title: String,
description: String,
milestones: [String*],
labels: [String*]
}*]
GET /user/
Response: {
id: String,
name: String,
email: String,
}
@yarbelk
Copy link

yarbelk commented Jun 2, 2013

add avatar into the user

GET /user/github/
Response: {
    'login': string,
    'id': number # github id
    'avatar_url': url
    etc.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment