https://rentfromme.herokuapp.com/api/owners/register
{
"first_name": "User",
"last_name": "McUser",
"email": "owner@gmail.com",
"password": "password",
}
https://rentfromme.herokuapp.com/api/owners/login
{
"email": "owner@gmail.com",
"password": "password"
}
https://rentfromme.herokuapp.com/api/renters/register
{
"first_name": "User",
"last_name": "McUser",
"email": "renter@gmail.com",
"password": "password",
}
https://rentfromme.herokuapp.com/api/renters/login
{
"email": "renter@gmail.com",
"password": "password"
}
https://rentfromme.herokuapp.com/api/owners
https://rentfromme.herokuapp.com/api/renters
https://rentfromme.herokuapp.com/api/owners/:id
https://rentfromme.herokuapp.com/api/renters/:id
https://rentfromme.herokuapp.com/api/owners/:id
https://rentfromme.herokuapp.com/api/renters/:id
https://rentfromme.herokuapp.com/api/owners/:id
https://rentfromme.herokuapp.com/api/renters/:id
https://rentfromme.herokuapp.com/api/items
https://rentfromme.herokuapp.com/api/items/:id
https://rentfromme.herokuapp.com/api/items/owner/:id
https://rentfromme.herokuapp.com/api/items/create
{
"owner_id": 2,
"title": "Camera",
"description": "Donizzle mah nizzle dui. Fizzle risizzle boofron,
elementum consectetizzle, sollicitudizzle in, consequat imperdizzle,
turpis.",
"make": "Canon",
"model": "R3",
"img_url": "camerapic.jpg",
"daily_cost": 900,
"available": true,
"condition": "Good"
}
https://rentfromme.herokuapp.com/api/items/:id
https://rentfromme.herokuapp.com/api/rentals
https://rentfromme.herokuapp.com/api/rentals/:id
https://rentfromme.herokuapp.com/api/rentals/renter/:id
https://rentfromme.herokuapp.com/api/rentals/:id
https://rentfromme.herokuapp.com/api/rentals/:id
https://rentfromme.herokuapp.com/api/rentals/rentItem
Schema looks like:
start_date: "2019-11-20",
end_date: "2019-11-22",
total_cost: 600,
tool_id: 3,
renter_id: 1
}```