# Steps Tracker

<table><thead><tr><th>Field Name</th><th width="249">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>created_at</code></td><td>DateTime</td><td>Timestamp of when the event was registered. (ISO 8601 with timezone)</td></tr><tr><td><code>datetime</code></td><td>DateTime</td><td>Timestamp of when the event was last updated. (ISO 8601 with timezone)</td></tr><tr><td><code>event</code></td><td>Event</td><td><p>enum Event {</p><p>steps_tracker.created<br>steps_tracker.updated<br>steps_tracker.deleted</p><p>}</p></td></tr><tr><td><code>id</code></td><td>Id</td><td>Event id.</td></tr><tr><td><code>profile_id</code></td><td>Id</td><td>User profile ID.</td></tr><tr><td><code>source</code></td><td>SourceType</td><td>enum SourceType {<br>SUGGESTIC<br>FITBIT<br>GARMIN<br>POLAR<br>MISFIT<br>WITHINGS<br>STRAVA<br>GOOGLEFIT_REST<br>GOOGLEFIT_NATIVE<br>SUUNTO<br>OURA<br>IHEALTH<br>APPLE<br>SAMSUNG<br>OMRONCONNECT<br>OMRONWELLNESS<br>HUAWEIHEALTH<br>HEALTHCONNECT<br>}</td></tr><tr><td><code>steps</code></td><td>Int</td><td>Amount of steps registered.</td></tr></tbody></table>

### Example

```graphql
{
  "body": {
    "created_at": "2025-11-26T23:47:45.742734",
    "datetime": "2025-11-26T23:47:38+00:00",
    "event": "steps_tracker.created",
    "id": 24919022,
    "profile_id": "142afbac-535a-47ec-8a00-e4a7c24edf98",
    "source": "Suggestic",
    "steps": 1000
  }
}
```
