POST
/
{team_id}
/
cards
/
{card_id}
/
linked_cards
Link a card with another
curl --request POST \
  --url https://api.superthread.com/v1/{team_id}/cards/{card_id}/linked_cards \
  --header 'Content-Type: application/json' \
  --data '{
  "card_id": "41",
  "linked_card_type": "blocks"
}'
{
  "linked_card": {
    "title": "Create illustration for upcoming holidays",
    "card_id": "42",
    "user_id": "42",
    "project_id": "3",
    "board_id": "15",
    "board_title": "Ideas",
    "list_id": "list 1",
    "list_title": "list 1",
    "status": "started",
    "archived": {
      "user_id": "uDsu0j19",
      "time_archived": 1608742037016
    },
    "linked_card_type": "blocks"
  }
}

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

Create linked card request details

The body is of type object.

Response

200
application/json

Linked card successfully created

The response is of type object.