> 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/skills/_list.md).

# \_list

Gathers a list of all Skill names and IDs.

### Parameter

#### fields

An optional array if you only want a specific field.

* id
* name

### Example

```
FM_api('Skills_list',[
		'fields'=>['name']
	]
);
```

### Results

Successful test with "\['name']" in the fields parameter:

```
[{"name":"test skill"},{"name":"test skill two"}]
```

Successful test without field parameter or with "\['name','id']":

```
[{"name":"test skill","id":"1"},{"name":"test skill two","id":"30001"}]
```
