Last active
February 3, 2016 13:14
-
-
Save andrewjmead/c0d8ec0c3396119202eb to your computer and use it in GitHub Desktop.
Shena - Company Tickets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // GET /companies/:companyId/tickets | |
| { | |
| company: { | |
| name: 'Some LLC' | |
| // Other company fields | |
| }, | |
| tickets: [{ | |
| id: 1, | |
| userId: 23 | |
| // Other ticket fields | |
| }, { | |
| id: 28, | |
| userId: 29 | |
| }]; | |
| } | |
| // GET /companies/:companyId/tickets?user=2,79,23 | |
| { | |
| company: { | |
| name: 'Some LLC' | |
| // Other company fields | |
| }, | |
| tickets: [{ | |
| id: 1, | |
| userId: 23 | |
| // Other ticket fields | |
| }]; | |
| } | |
| // GET /companies/:companyId | |
| { | |
| company: { | |
| name: 'Some LLC' | |
| // Other company fields | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment