Guest User

Untitled

a guest
Jan 23rd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. API General design:
  2.  
  3. POST /api/companies/items
  4. GET /api/companies/items
  5. GET /api/companies/items/{id}
  6. DELETE /api/companies/items/{id}
  7. PUT /api/companies/items/{id}
  8.  
  9. PATCH /api/companies/items/
  10.  
  11. Request:
  12.  
  13. [
  14. { id: 1, name: 'foo' },
  15. { id: 2, name: 'bar' }
  16. ]
  17.  
  18. Response:
  19.  
  20. [ 200, 403 ]
Add Comment
Please, Sign In to add comment