POST /projects/{projectId}/cards/{cardId}/alias

Create an alias for a card in a project and column. If the card already exists in the project an error will be thrown.

Path parameters

  • projectId string Required

    The Project ID of the card

  • cardId string Required

    The ID of the card

Body

  • columnId string Required

    The column ID to move this card to

  • projectId string Required

    The project ID to move this card to

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