01-03-2017 04:18
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

01-03-2017 04:18
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
I use the following link for http request by replacing releavnt date and user-id, but the response body only show the activity minutes and the summary but not include the log id, what's wrong?
https://api.fitbit.com/1/user/[user-id]/activities/date/[date].json

01-03-2017 08:40
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post



01-03-2017 08:40
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
@ust Either there are no logged activities for the date you're requesting, or you're requesting data from another user rather than the current user logged in. Replace user-id with the "-", and make sure there are logged activities.

01-04-2017 06:34
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post

01-04-2017 06:34
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
What do you mean of logged activities?

01-04-2017 09:51
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post



01-04-2017 09:51
- Mark as New
- Bookmark
- Subscribe
- Permalink
- Report this post
@ust Logged activities meaning activities that are manually entered. If I have a 'Walk' logged on my account for today and I make this call:
https://api.fitbit.com/1/user/-/activities/date/today.json
I will get this:
{
"activities": [
{
"activityId": 90013,
"activityParentId": 90013,
"activityParentName": "Walk",
"calories": 222,
"description": "Walking less than 2 mph, strolling very slowly",
"distance": 5.1499,
"duration": 3600000,
"hasStartTime": true,
"isFavorite": false,
"lastModified": "2017-01-04T15:34:18.000Z",
"logId": 5429194194,
"name": "Walk",
"startDate": "2017-01-04",
"startTime": "05:03",
"steps": 7294
}
],
[...]
You can also use the "Get Activity Logs List" endpoint.
Example:
https://api.fitbit.com/1/user/-/activities/list.json?beforeDate=2016-09-23&sort=desc&limit=10&offset =0

