# Weight 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>date</code></td><td>Date</td><td>Date of when the event was last updated. (YYYY-MM-DD)</td></tr><tr><td><code>event</code></td><td>Event</td><td><p>enum Event {</p><p>weight_tracker.created<br>weight_tracker.updated<br>weight_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>value</code></td><td>Float</td><td>Weight in kilograms.</td></tr></tbody></table>

### Example

```graphql
{
  "body": {
    "created_at": "2025-11-28T22:29:44.568553",
    "date": "2025-11-28",
    "event": "weight_tracker.created",
    "id": 2164349,
    "profile_id": "a91f7a7d-a24b-40ab-a045-a63ef0632a0d",
    "source": "Suggestic",
    "value": 82
  }
}
```
