Skip to content

Commit

Permalink
postman
Browse files Browse the repository at this point in the history
  • Loading branch information
briankelleher committed Dec 7, 2016
1 parent f42cf1d commit bf45658
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion api/Foodbank.postman_collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
{
"name": "GET All Food with Limit & Offset",
"request": {
"url": "http://localhost:8000/food/all/1/0",
"url": "http://localhost:8000/api/food/all/1/0",
"method": "GET",
"header": [],
"body": {
Expand All @@ -48,6 +48,34 @@
"description": "First parameter after /food/all is LIMIT\nSecond parameter after /food/all is OFFSET"
},
"response": []
},
{
"name": "GET Food by Id",
"request": {
"url": "http://localhost:8000/api/food/1",
"method": "GET",
"header": [],
"body": {
"mode": "formdata",
"formdata": []
},
"description": ""
},
"response": []
},
{
"name": "GET Food by Barcode",
"request": {
"url": "http://localhost:8000/api/food/barcode/000000",
"method": "GET",
"header": [],
"body": {
"mode": "formdata",
"formdata": []
},
"description": ""
},
"response": []
}
]
}

0 comments on commit bf45658

Please sign in to comment.