Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
Hi @datphung,
Welcome to the forums!
I'm not quite sure I understand what you're asking. Can you please provide me with more details or an example of the type of step data you are trying to collect?
Hope to hear from you soon.
Best AnswerHi @JohnFitbit
Could you tell me, is there a way to know if the step has been entered manually or if the activity was an activity that was recorded live from sensors and added to Fitbit?
Thank you.
Best Answer
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
Hi @datphung
The Get Activity Log List endpoint can tell you the source of the recorded activity whether it is from the tracker, auto_detected, manually entered or from a 3rd party app. The response will display the logType (the source of the activity) and the steps (number of steps taken during the activity) elements. There is an example in the documentation link I provided.
Gordon
Best Answer
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
Hi @datphung
There may be some manual activities recorded that are legitimate where step count is not manually entered. You'll want to decide what is appropriate for you solution.
If you want to restrict manually entered steps, then there are 2 options
However, if you want to restrict all manual activities, then use the Get Activity Log List endpoint and collect data if logType != manual.
Gordon