Skip to main content
PATCH
/
api
/
v2
/
columns
/
{columnId}
/
move
Move or duplicate a column to another project
curl --request PATCH \
  --url https://app.tarefy.com/nodeapi/api/v2/columns/{columnId}/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "toProjectId": 123,
  "keepInCurrent": true
}
'
{
  "status": true,
  "message": "<string>",
  "data": {
    "columnId": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.tarefy.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

columnId
integer
required

ID da coluna a ser movida

Body

application/json
toProjectId
integer
required

ID do projeto de destino

keepInCurrent
boolean

Se verdadeiro, mantém a coluna no projeto de origem e cria uma cópia no destino

Response

Coluna movida com sucesso

status
boolean
message
string
data
object