mkarnoto24 / ci-rest-api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ci-rest-structure

CodeIgniter HMVC rest api structure with JWT integration

Dependencies

PHP 5.x above Composer [https://getcomposer.org/]

#Installation instructions Run composer install to install all the vendor dependacies Config database file to test the project "# ci-rest-api"

Endpoint

List Barang

Method GET
http://localhost/ci-rest-api/v1/product

GET Barang By Id

Method GET
http://localhost/ci-rest-api/v1/product/:id
example : http://localhost/ci-rest-api/v1/product/?id=4

Post Barang

Method GET
http://localhost/ci-rest-api/v1/product/
example for request body :
{
"name":"Handphone",
"description":"iphone x",
"price":"15000000"
}

Put (Update Barang by Id)

Method PUT
http://localhost/ci-rest-api/v1/product/

Delete (Delete barang)

Method DELETE
http://localhost/ci-rest-api/v1/product/

About

License:MIT License


Languages

Language:PHP 99.6%Language:HTML 0.3%Language:TSQL 0.1%