I have a response json like this,
[{
"userId": 1,
"id": 1,
"title": "quidem molestiae enim"
},
{
"userId": 2,
"id": 2,
"title": "sunt qui excepturi placeat culpa"
},
{
"userId": 3,
"id": 3,
"title": "omnis laborum odio"
}]
I want to show detail from userId = 3, I wasn't provided an endpoint to get detail. So I want to get detail from this endpoint.
in App:
- I've shown the data for dashboard (using recyclerview/list)
- After that, I want to go to detail from one data that I selected.
- Case: I'm using 1 endpoint (like above)