# Groups

## Default groups

When creating a new app, new modules are automatically added to the `Other` group. If you've never used this feature in your app before, all of your modules will be placed in this group by default and displayed in categories based on their function.

{% tabs %}
{% tab title="Occurrence in the module" %}

<div align="left"><img src="/files/voQ56PafrlaPjF7uixZg" alt="" width="323"></div>
{% endtab %}

{% tab title="Source" %}

```json
[
    {
        "label": "Other",
        "modules": [
            "createTask", 
            "updateTask", 
            "getTask", 
            "listTasks",
            "listNotes",
            "watchTasks",
            "watchNotes"
         ]
     }
 ]
            
```

{% hint style="info" %}
When there's only a single `Other` group, the modules are grouped according to their type.
{% endhint %}
{% endtab %}
{% endtabs %}

## Change the groups and order

By changing the **Groups** file, you can set up as many groups as you want and group the modules into logical blocks. Once you create a new group and put a single module there, your app will no longer use the default grouping.

{% tabs %}
{% tab title="Occurrence in a module" %}

<div align="left"><img src="/files/jxJcvR1MNErG7YMyLD1H" alt="" width="323"></div>
{% endtab %}

{% tab title="Source" %}

```json
[
  {
    "label": "Notes",
    "modules": [
      "watchNotes",
      "listNotes"
    ]
  },
  {
        "label": "Tasks",
        "modules": [
            "watchTasks",
            "createTask",
            "updateTask",
            "getTask",
            "listTask"
         ]
     }
]
            
```

{% hint style="info" %}
The modules are displayed **in the same order** as they are specified in the Groups section.
{% endhint %}
{% endtab %}
{% endtabs %}

One module can belong to one or more groups, but it has to belong to at least one. You won't be allowed to save the group's configuration otherwise.

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

```json
[
    {
        "label": "Notes",
        "modules": [
            "watchNotes",
            "listNotes",
           ]
    },
    {
        "label": "Tasks",
        "modules": [
            "watchTasks",
            "createTask", 
            "updateTask", 
            "listTask"
         ]
     }
 ]
            
```

{% hint style="info" %}
This code produces the error: `Not categorized module(s): getTask`
{% endhint %}
{% 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://developers.make.com/custom-apps-documentation/app-components/groups.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.
