Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rodneyosodo/uber4freefood


https://github.com/rodneyosodo/uber4freefood

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# uber4freefood
## Food Api

###### Running
Clone files into go src directory
run `docker-compose up`

###### port `*:8080`

###### Api Routes
`GET /food`
This return all the records from the table
```
{
"data": [
{
"id": 1,
"foodName": "",
"dietType": "",
"description": "",
"specialIngridients": "",
"serving": "",
"SpecialNote": "",
"foodImageId": "",
"locationLat": "",
"locationLong": "",
"status": ""
}
]
}
```

`POST /food`
This is used to create a record
```
{
"data": [
{
"foodName": "",
"dietType": "",
"description": "",
"specialIngridients": "",
"serving": "",
"SpecialNote": "",
"foodImageId": "",
"locationLat": "",
"locationLong": "",
"status": ""
}
]
}
```
`GET /food/:id`
return specific record from given id
```
{
"data": [
{
"foodName": "",
"dietType": "",
"description": "",
"specialIngridients": "",
"serving": "",
"SpecialNote": "",
"foodImageId": "",
"locationLat": "",
"locationLong": "",
"status": ""
}
]
}
```
PATCH /food/:id
Edit staus for food
`{"Status": ""}`
returns
```
{
"data": [
{
"id": 1,
"foodName": "",
"dietType": "",
"description": "",
"specialIngridients": "",
"serving": "",
"SpecialNote": "",
"foodImageId": "",
"locationLat": "",
"locationLong": "",
"status": ""
}
]
}
```
`DELETE /food/:id`
delete specified record
```
{
"data": true
}
```