Create an alias for a card in a project and column. If the card already exists in the project an error will be thrown.
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"
}