Skip to main content
PUT
/
api
/
content
/
v1
/
cards
/
{CARD_ID}
/
title
Update Card Title
curl --request PUT \
  --url https://example.com/v1/api/content/v1/cards/{CARD_ID}/title \
  --header 'Content-Type: application/json' \
  --header 'X-DOMO-Developer-Token: <api-key>' \
  --data '
{
  "dynamicTitle": {
    "text": [
      {
        "type": "TEXT",
        "text": "Pivot Table - Change 22 the quick brown fox"
      }
    ]
  },
  "dynamicDescription": {
    "text": [
      {
        "type": "TEXT",
        "text": "Pivot Table - Change 22 the quick brown fox"
      }
    ]
  }
}
'
{}

Authorizations

X-DOMO-Developer-Token
string
header
required

Domo Developer Token for authentication.

Path Parameters

CARD_ID
integer
required

The ID of the card to update.

Body

application/json

The request body for updating a card's title and description.

dynamicTitle
object

Container for dynamic text blocks.

dynamicDescription
object

Container for dynamic text blocks.

Response

OK. The card was updated successfully.

Returns an empty object.