# Create my Checklist Item

Use the `createMyChecklistItem` to create a user's goal or an indicator in which a user can register or track daily habits. i.e water intake 11.5 cups.

### Available Arguments

| **Argument Name** | **Is required?** |  **Type** |                                           **Description**                                           |
| :---------------: | :--------------: | :-------: | :-------------------------------------------------------------------------------------------------: |
|      `header`     |        Yes       |   String  |                                     Title of the checklist item                                     |
|       `text`      |        Yes       | \[String] |                                  Description of the checklist item                                  |
|       `tags`      |        No        |   String  | <p><br>Predefined tag to be added. Separate them by a comma if more than one needs to be added.</p> |

## Available Fields

The following fields will be displayed in the response:

| Field             | Type            | Description                                                                      |
| ----------------- | --------------- | -------------------------------------------------------------------------------- |
| `success`         | string          | **True** if the checlistitem has been created successfully. Otherwise, **False** |
| `message`         | string          | Description of the result                                                        |
| `myChecklistItem` | myChecklistItem | A structured version of the checklist item.                                      |

## Example

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

```graphql
mutation {
  createMyChecklistItem(
    header: "Run 30km"
    text: "Coach Suggestion"
    tags: "exercise, diet"
  ) {
    success
    message
  }
}

```

{% endtab %}

{% tab title="Response" %}

```graphql
{
  "data": {
    "createMyChecklistItem": {
      "success": true,
      "message": "My checklist item was successfully created"
    }
  }
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: 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.suggestic.com/graphql/query/mutations/tracking/checklists/create-my-checklist-item.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.
