> For the complete documentation index, see [llms.txt](https://docs.tryterra.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tryterra.co/faq/help-topics/no-data/connected-but-no-data-arriving/samsung-healthconnect-sdk-pull-required.md).

# Why is no Samsung Health data syncing after I connected?

Samsung Health is a **mobile-SDK integration read through Health Connect** (Samsung writes into Health Connect, the SDK reads from there), so there is no server-side pull. The dashboard 'Get Data' button being greyed out, empty console scopes, and the 'SDK Only' warning are all expected.

Health Connect forbids background syncing, so data only arrives when your app is in the foreground and explicitly requests it via getter calls (`getDaily`, `getActivity`, etc.) with the scheduler enabled at Terra init.

To debug:

{% stepper %}
{% step %}
Confirm `initConnection` returns `success=true`.
{% endstep %}

{% step %}
Verify your app appears in Health Connect's recent access list.
{% endstep %}

{% step %}
Confirm both the source app and your app have permission for each relevant data type in Health Connect (missing permissions silently return empty).
{% endstep %}

{% step %}
Check that data actually appears in the Health Connect app, since Samsung Health does not always write steps, exercise or sleep there.
{% endstep %}

{% step %}
Test with manual `getDaily` / `getActivity` calls.
{% endstep %}
{% endstepper %}

Users can force a sync by opening Samsung Health or Health Connect and pulling to refresh. For more reliable delivery, **use Terra's direct Samsung Health route**, which bypasses Health Connect. See the [mobile-only sources docs](https://docs.tryterra.co/health-and-fitness-api/mobile-only-sources) for setup.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tryterra.co/faq/help-topics/no-data/connected-but-no-data-arriving/samsung-healthconnect-sdk-pull-required.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
