DELETE /projects/{projectId}/cards/{cardId}

Note; cards are only archived from the current project, they will still be visible in other projects they are part of.

Path parameters

  • projectId string Required

    The Project ID of the card

  • cardId string Required

    The ID of the card

Responses

  • 200
    Hide response attributes Show response attributes object
    • columns array[object]
      Hide columns attributes Show columns attributes object
      • id string
      • name string
    • createdFlair string
    • id string
    • metadata array[object]
      Hide metadata attributes Show metadata attributes object
      • id string
      • value string
    • name string
    • url string
DELETE /projects/{projectId}/cards/{cardId}
curl \
 --request DELETE 'https://tadatodo.com/api/projects/Pae77f34bbf9/cards/Cae77f34bbf9' \
 --header "X-API-Key: $API_KEY"
Response examples (200)
{
  "columns": [
    {
      "id": "string",
      "name": "string"
    }
  ],
  "createdFlair": "string",
  "id": "string",
  "metadata": [
    {
      "id": "string",
      "value": "string"
    }
  ],
  "name": "string",
  "url": "string"
}