In my apiary, I have defined the following to retrieve one id when id is passed to A single Note object with all its details
{ "id": 2, "title": "Pick-up posters from post-office" }
http://private-22c1f-polpan.apiary-mock.com/notes/2
If I would like to pass another id by passing 3, how to define JSON entry in apiary?
{ "id": 2, "title": "Pick-up posters from post-office" }
{ "id": 3, "title": "third entry" }
However when I tried as
http://private-22c1f-polpan.apiary-mock.com/notes/3
it is not returning details for id 3.
How could I fix this?