DELETE /projects/{projectId}/columns/{columnId}

Archive

Path parameters

  • projectId string Required

    The Project ID of the card

  • columnId string Required

    The column ID of the card

Body

  • targetColumnId string

    The optional column ID to move existing cards into. If this is omited, all cards will be archived.

Responses

  • 200
    Hide response attributes Show response attributes object
    • id string
    • name string
    • plugins array[object]
      Hide plugins attributes Show plugins attributes object
      • author string
      • configUrl string
      • description string
      • flair string
      • id string
      • name string
      • uiConfigType string
    • rows array[object]
      Hide rows attributes Show rows attributes object
      • columns array[object]
        Hide columns attributes Show columns attributes object
        • id string
        • name string
      • id string
      • name string
DELETE /projects/{projectId}/columns/{columnId}
curl \
 --request DELETE 'https://tadatodo.com/api/projects/Pae77f34bbf9/columns/Coe77f34bbf9' \
 --header "X-API-Key: $API_KEY" \
 --data '{"targetColumnId":"Cae77f34bbf9"}'
Request examples
{
  "targetColumnId": "Cae77f34bbf9"
}
Response examples (200)
{
  "id": "string",
  "name": "string",
  "plugins": [
    {
      "author": "string",
      "configUrl": "string",
      "description": "string",
      "flair": "string",
      "id": "string",
      "name": "string",
      "uiConfigType": "string"
    }
  ],
  "rows": [
    {
      "columns": [
        {
          "id": "string",
          "name": "string"
        }
      ],
      "id": "string",
      "name": "string"
    }
  ]
}