cURL
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>" } }
Updates an existing card. Provide _id in the request body to identify the card. Returns 404 if no card with that ID exists on the board.
_id
ID of the card to update.
Any board field UUID as key, with the updated value.
Card updated.
Show child attributes