> ## Documentation Index
> Fetch the complete documentation index at: https://domoinc-bradley-turek-pfilter-operators-reference.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Cards API

## Update Card Title

<Card horizontal arrow title="Playground" icon="code" href="/api-reference/cards-api/update-card-title " />

**Method**: `PUT`\
**Endpoint**: `/api/content/v1/cards/<CARD_ID>/title`

**Example**:

```json theme={"dark"}
{
  "method": "PUT",
  "url": "https://{instance}.domo.com/api/content/v1/cards/<CARD_ID>/title",
  "headers": {
    "X-DOMO-Developer-Token": "",
    "Content-Type": "application/json"
  },
  "body": {
   "dynamicTitle":{
      "text":[
         {
            "type":"TEXT",
            "text":"Pivot Table - Change 22 the quick brown fox jumped over the lazy dog"
         }
      ]
   },
   "dynamicDescription":{
      "text":[
          {
            "type":"TEXT",
            "text":"Pivot Table - Change 22 the quick brown fox jumped over the lazy dog"
          }
      ]
   }
}
```

**Response**:

```json theme={"dark"}
200:
{}
```
