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

https://github.com/syauqi357/restapi

API database PHP using REST system
https://github.com/syauqi357/restapi

api database php rest-api

Last synced: 22 days ago
JSON representation

API database PHP using REST system

Awesome Lists containing this project

README

          

## Products:
GET, api.php?endpoint=products,(get all)
GET, api.php?endpoint=products&id=1, (get one)
POST, api.php?endpoint=products, (create)
PUT, api.php?endpoint=products&id=1, (update)
DELETE, api.php?endpoint=products&id=1, (delete)

### table preview

GET| api.php?endpoint=products|(get all)
-----|-----|-----
GET| api.php?endpoint=products&id=1| (get one)
POST| api.php?endpoint=products| (create)
PUT| api.php?endpoint=products&id=1| (update)
DELETE| api.php?endpoint=products&id=1| (delete)

## Transactions:
GET, api.php?endpoint=transactions, (get all)
GET, api.php?endpoint=transactions&id=1, (get one)
POST, api.php?endpoint=transactions, (create)
PUT, api.php?endpoint=transactions&id=1, (update)
DELETE, api.php?endpoint=transactions&id=1, (delete)

### table preview

GET| api.php?endpoint=transactions| (get all)
-----|-----|-----
GET| api.php?endpoint=transactions&id=1| (get one)
POST| api.php?endpoint=transactions| (create)
PUT| api.php?endpoint=transactions&id=1| (update)
DELETE| api.php?endpoint=transactions&id=1| (delete)