---
title: LEGACY_STRINGIFY
url: https://www.tines.com/docs/formulas/functions/legacy-stringify/
kind: formula-function
---

*[tines.com](https://www.tines.com/llms.txt) › [Docs](https://www.tines.com/docs/llms.txt) › [Formulas](https://www.tines.com/llm/docs/formulas.md) › [Functions](https://www.tines.com/llm/docs/formulas/functions.md)*

# LEGACY_STRINGIFY

*[View on tines.com](https://www.tines.com/docs/formulas/functions/legacy-stringify/)*

Converts an object parameter to a legacy String representation.

**Categories:** Text

## Syntax

```
LEGACY_STRINGIFY(object)
```

## Examples

### Example 1

Input:

```json
{
  "my_action": {
    "data": {
      "foo": "bar"
    }
  }
}
```

Formula:

```
LEGACY_STRINGIFY(my_action.data)
```

Output:

```json
"{\"foo\"=>\"bar\"}"
```
