> 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/skill/_setdescription.md).

# \_setDescription

Sets the description of a chosen Skill.

### Parameters

#### id

The ID of the Skill you wish to modify.

#### description

The new description which will go under the chosen Skill.

### Example

```
FM_api('Skill_setDescription',[
		'id'=>'12345',
		'description'=>'This is a test
description.'
	]
);
```

### Results

#### On Success

```
{'ok':1}
```

#### On Failure

If the "id" parameter is not set or has an integer value less than 1:

```
{'error':'missing or invalid parameter: id'}
```

If the "description" parameter is not set or is empty:

```
{'error':'missing or invalid parameter: description'}
```
