# Add Exercise Entry

Use the `addExerciseEntry` to record the user's Exercise of the day.

### **Required Arguments**

<table data-header-hidden><thead><tr><th width="201.33333333333331">Argument</th><th>Type</th><th>Note</th></tr></thead><tbody><tr><td>Argument</td><td>Type</td><td>Note</td></tr><tr><td><code>datetime</code></td><td>Datetime!</td><td>The date when the steps entrie will be counted. Use the format: <code>YYYY-MM-DDT hh:mm:ssZ</code></td></tr><tr><td><code>type</code></td><td>ExerciseType!</td><td>Exercise Types: CARDIO, STRENGTH, WORKOUT_ROUTINE, RECOVERY, OTHER.</td></tr><tr><td><code>intensity</code></td><td>ExerciseIntensity!</td><td>Exercise Intensity: VIGOROUS, MODERATE, LOW.</td></tr><tr><td><code>durationMinutes</code></td><td>Int!</td><td>Time the exercise lasted in minutes.</td></tr><tr><td><code>calories</code></td><td>Int</td><td>Calories burned.</td></tr></tbody></table>

### **Available Fields**

| Field     | Type    | Note                                                                                   |
| --------- | ------- | -------------------------------------------------------------------------------------- |
| `success` | Boolean | **true:** If the entry has been created successfully. Otherwise, it displays **false** |
| `message` | String  | The message returns either if the information has been updated or not.                 |

### Example <a href="#example" id="example"></a>

{% tabs %}
{% tab title="Request" %}

<pre class="language-graphql"><code class="lang-graphql">mutation {
  addExerciseEntry(
  datetime: "2022-06-23T09:07:21-07:00"
  type: STRENGTH
  intensity: MODERATE
<strong>  durationMinutes: 60
</strong><strong>  calories: 200
</strong>  ) 
  {
    success
    message
  }
}
</code></pre>

{% endtab %}

{% tab title="Headers" %}

```graphql
{
  "Authorization": "Bearer <insert_your_token_here>"
}
```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "addExerciseEntry": {
      "success": true,
      "message": "Exercise added"
    }
  }
}

```

{% endtab %}
{% endtabs %}

### UI Example

![](https://920729701-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LwqSnBDpAb6mFZYLsuB%2Fuploads%2FchtvFEuqw96LXmNHl9EP%2Fexercise.jpg?alt=media\&token=039ac650-a7d6-4acb-8c30-53da097783b9)
