Skip to main content
POST
/
{team_id}
/
cards
/
{card_id}
/
tags
Add tags to card
curl --request POST \
  --url https://api.superthread.com/v1/{team_id}/cards/{card_id}/tags \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "ids": [
    "<string>"
  ]
}
'
{
  "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
id
string

Tag ID to attach to the card

ids
string[]

Array of tag IDs to attach to the card

Response

tags successfully added