Tell us what’s happening:
Describe your issue in detail here.
Your project link(s)
The response returned from POST /api/users/:_id/exercises will be the user object with the exercise fields added.
…
here response is correct but it shows error, I don’t know why, below is my response
{
I think the issue in your project it is this endpoint:
/api/users/:_id/logs
In the example it looks that it needs 3 query string values
GET /api/users/:_id/logs?[from][&to][&limit] The logs endpoint !
from to and limit
You can add from , to and limit parameters to a GET /api/users/:_id/logs request to retrieve part of the log of any user. from and to are dates in yyyy-mm-dd format. limit is an integer of how many logs to send back.