curl --request POST \
--url https://app.getaptly.com/api/aptlet/{boardId} \
--header 'Content-Type: application/json' \
--header 'x-token: <x-token>' \
--data '
{
"name": "Widget Adapter",
"stage": "To Do"
}
'{
"_id": "JShpBxEFgRmZnivTf"
}Posts a new card to the board. The format of this post is a JSON object containing key/value pairs where the key is the name of the field (not the UUID), and the value is the value you wish to post.
If an _id parameter is provided, Aptly will update the existing card that matches the given _id.
Note: The JSON key for the field is the name of the field, not the UUID retrievable via the schema. This may change in the future.
curl --request POST \
--url https://app.getaptly.com/api/aptlet/{boardId} \
--header 'Content-Type: application/json' \
--header 'x-token: <x-token>' \
--data '
{
"name": "Widget Adapter",
"stage": "To Do"
}
'{
"_id": "JShpBxEFgRmZnivTf"
}Your Aptly API Token. Available in the Aptly UI under Card Sources > API.
The unique ID of the board.
Item created or updated successfully
"JShpBxEFgRmZnivTf"