Skip to main content
PUT
/
{team_id}
/
cards
/
{card_id}
/
content
Overwrite card content
curl --request PUT \
  --url https://api.superthread.com/v1/{team_id}/cards/{card_id}/content \
  --header 'Content-Type: application/json' \
  --data '
{
  "content": "<string>",
  "is_html": false
}
'
{
  "error": {
    "id": "err5f744ab",
    "code": 403,
    "sec": "SEC:000-010011",
    "message": "You do not have access to this resource",
    "date": 1608742037016
  }
}

Path Parameters

team_id
string
required

Team ID is an alphanumerical string that identifies a Team. This is externally referred to as a "Workspace".

card_id
string
required

Card ID is a numerical string that identifies a card.

Body

application/json

new card content

content
string
required

The content to set on the card

Maximum string length: 102400
is_html
boolean
default:false

Whether the content is HTML

Response

card content successfully updated