Skip to main content
POST
/
api
/
board
/
{boardId}
/
update
Update a card
curl --request POST \
  --url https://core-api.getaptly.com/api/board/{boardId}/update \
  --header 'Content-Type: application/json' \
  --header 'x-token: <api-key>' \
  --data '
{
  "_id": "abc123cardid",
  "name": "John Smith (Updated)",
  "ghi789": 1800
}
'
{
  "data": {
    "_id": "<string>"
  }
}

Authorizations

x-token
string
header
required

Path Parameters

boardId
string
required

Body

application/json
_id
string
required

ID of the card to update.

name
string
{key}
any

Any board field UUID as key, with the updated value.

Response

Card updated.

data
object