> For the complete documentation index, see [llms.txt](https://docs.fieldmotion.com/fieldmotion-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fieldmotion.com/fieldmotion-api-docs/accountcategorygroup/_save.md).

# \_save

Save changes to an Account Category Group.

### Parameters

#### id

The ID of the Account Category Group to be updated (required).

#### name

The name of the Account Category Group

#### description

A short description of the Account Category Group (optional)

### Example

```
FM_api('AccountCategoryGroup_save', ['id'=>'14', 'name'=>'Current Assets', 'description'=>'Current assets']);
```

### Result

#### On Success

```
{"ok":1}
```

#### On Failure

If invalid parameter(s) supplied (e.g. no name or unrecognised id), returns false.

```
false
```
