Path parameters

  • projectId string Required

    The Project ID for this operation

Body

  • afterCardId string

    The card ID to move this card after.

    You can only use this or beforeCardId, not both

  • beforeCardId string

    The card ID to move this card before.

    You can only use this or afterCardId, not both.

  • columnId string Required

    The column ID to move this card to

  • ids array[string] Required

    The array of card ids to move

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
PATCH /projects/{projectId}/cards/move
curl \
 --request PATCH 'https://tadatodo.com/api/projects/Pae77f34bbf9/cards/move' \
 --header "X-API-Key: $API_KEY" \
 --data '{"afterCardId":"Cae77f34bbf9","beforeCardId":"Cae77f34bbf9","columnId":"Coe77f34bbf9","ids":["Cae77f34bbf9","Cae77f34bbf9"]}'
Request examples
{
  "afterCardId": "Cae77f34bbf9",
  "beforeCardId": "Cae77f34bbf9",
  "columnId": "Coe77f34bbf9",
  "ids": [
    "Cae77f34bbf9",
    "Cae77f34bbf9"
  ]
}
Response examples (200)
{
  "columns": [
    {
      "id": "string",
      "name": "string"
    }
  ],
  "createdFlair": "string",
  "id": "string",
  "metadata": [
    {
      "id": "string",
      "value": "string"
    }
  ],
  "name": "string",
  "url": "string"
}