dev-master
9999999-devAdds CRUD functionality through a RESTful API for Laravel
The Requires
- php >=5.4.0
- illuminate/support 4.2.*
- laravelbook/ardent 2.*
by Beau Lynn-Miller
laravel
Wallogit.com
2017 © Pedro Peláez
Adds CRUD functionality through a RESTful API for Laravel
All calls to the API will start with /api/v1/
All responses will be in JSON
If any response other than 200 is given, the JSON will be an array with a code and message element, (*1)
/api/v1/login
ANY
username, password OR token
tokenExample: /api/v1/login?username=3333334444&password=fake
Ex Return: {"data":{"token":"12d3ff","user":{"id":2,"username":"3333334444","name":"Beau Lynn-Miller","phone":"3333334444","email":"beaulm@gmail.com","created_at":"2014-10-17 10:16:58","updated_at":"2014-10-17 10:17:00","deleted_at":null,"last_offered":null}},"timestamp":"2014-10-17 10:57:05","hashes":{"gpsConfig":"422962d8","vehicles":"86e45d7c","towingCompanies":"011500b9","states":"738ee935"}}, (*2)
/api/v1/{object}
GET
token
Example: /api/v1/user?token=12d3ff
Ex Return: [{"id":1,"name":"Fakey McFakerson","email":"fake@fake.com"},{"id":2,"name":"Foo McBarenson","email":"foo@bar.com"}], (*3)
/api/v1/{object}/{id}
GET
token
Example: /api/v1/user/2?token=12d3ff
Ex Return: {"id":2,"name":"Foo McBarenson","email":"foo@bar.com"}, (*4)
/api/v1/{object}
POST
token, fillabe parameters defined in modelExample: /api/v1/user?name=Testey&password=test&email=test@test.com&phone=5551234123&token=12d3ff
Ex Return: {"id":3,"name":"Testey","email":"test@test.com","phone":"5551234123"}, (*5)
/api/v1/{object}/{id}
PUT
token, fillabe parameters defined in modelExample: /api/v1/user/2?phone=5557777777&token=12d3ff
Ex Return: {"id":2,"name":"Foo McBarenson","email":"foo@bar.com","phone":"5557777777"}, (*6)
DELETE
token
Example: /api/v1/user/1
Ex Return: [{"id":2,"name":"Foo McBarenson","email":"foo@bar.com","phone":"5557777777"},{"id":3,"name":"Testey","email":"test@test.com","phone":"5551234123"}], (*7)
/api/v1/logout
ANY
token
Example: /api/v1/logout?token=12d3ff
Ex Return: {"message":"Logout successful"}, (*8)
Making a call without a token will result in an error:, (*9)
Example: /api/v1/user
Ex Return: {"code":401,"message":"You do not have access to view this web page"}, (*10)
Adds CRUD functionality through a RESTful API for Laravel
laravel