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

# \_getTags

Returns the Tags of a Quote.

### Parameters

#### id

The ID of the Quote.

### Example

```
FM_api('Quote_getTags', [
    'id' => '12345'
    ]
);
```

### Results

#### On Success

```
"Test status1\nTest status2"
```

#### On Failure

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

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

If the "id" parameter does not match the ID of an existing Quote:

```
{"error":"invalid quote id"}
```
