# \_getLocationTags

Get the Location Tags for a Stock entry

### Parameters

#### id

The id of the Stock entry

#### location\_tags

The tags that a Stock entry are assigned to

### Example

```
FM_api('Stock_getLocationTags',
        [
                'id'=>'427414',
                'val'=>["test","tes2"]
        ]
);
```

### Result

#### On Success

With the two tags: 'test' and 'tes2'

```
"test\ntes2"
```
