> 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/quote/_notesget.md).

# \_notesGet

Fetches the notes on a Quote.

### Parameters

#### id

The ID of the Quote.

### Example

```
FM_api('Quotes_notesGet', ['id' => '123']);
```

### Result

#### On Success

```
{'notes':'This is a note.'}
```

#### On Failure

If no Quote ID was given:

```
{'error':'no id'}
```

If the specified Quote does not exist:

```
{'error':'no such quote'}
```
