> For the complete documentation index, see [llms.txt](https://platform.slapdash.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://platform.slapdash.com/reference/command-response-tokens.md).

# Tokens

Tokens allow customizing how the command's parameters are displayed in the input of the Command Bar.

* **paramName:** The name of the parameter associated with this token. These parameters are typically added with [ActionMoveAddParam](/reference/command-response-action.md#actionmoveaddparam).
* **label:** Optional. The label for the token. By default, the parameter's name is used.
* **icon:** Optional. The [Icon](/reference/command-response-icon.md) for the token.

{% tabs %}
{% tab title="Masonry View: custom label and icon for a token" %}

```javascript
{
  "tokens": [
    {
      "paramName": "image",
      "label": "Moon",
      "icon": "🌜"
    }
  ],
  "view": {
    "type": "masonry",
    "options": [
      {
        "imageURL": "https://images.unsplash.com/photo-1481819613568-3701cbc70156",
        "action": {
          "type": "open-url",
          "url": "https://images.unsplash.com/photo-1481819613568-3701cbc70156"
        },
        "moveAction": {
          "type": "add-param",
          "name": "image",
          "value": "moon"
        }
      }
    ]
  }
}
```

{% endtab %}
{% endtabs %}
