Advertisement
Guest User

Untitled

a guest
May 20th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. GET /team ### list teams
  2. [
  3. {id: "123abc01", name: "Team America", users: 7, projects: 3, account_roles: []},
  4. {id: "123abc02", name: "The A-Team", users: 4, projects: 2, account_roles: []},
  5. {id: "123abc03", name: "Furniture Police", users: 3, projects: 4, account_roles: ["view"]},
  6. {id: "123abc04", name: "Account Administrators", users: 2, projects: 0, account_roles: ["admin"]},
  7. {id: "123abc05", name: "צוות גרשון", users: 5, projects: 4, account_roles: []}
  8. ]
  9.  
  10. -------------------
  11. GET /team/123abc01 ### get team details
  12. {
  13. id: "123abc01",
  14. name: "Team America",
  15. users: 7,
  16. projects: 3,
  17. account_roles: []
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement