curl --request GET \
--url https://app.getaptly.com/api/aptlet/{boardId} \
--header 'x-token: <x-token>'[
{
"_id": "JShpBxEFgRmZnivTf",
"name": "Widget Adapter",
"stage": "To Do"
}
]Returns cards on a board specified by board ID. The URL with the board ID is available in the Aptly UI under Card Sources > API.
Paginate through results by incrementing page from 0 until you receive an empty array.
curl --request GET \
--url https://app.getaptly.com/api/aptlet/{boardId} \
--header 'x-token: <x-token>'[
{
"_id": "JShpBxEFgRmZnivTf",
"name": "Widget Adapter",
"stage": "To Do"
}
]Your Aptly API Token. Available in the Aptly UI under Card Sources > API.
The unique ID of the board.
The page of results to return, 0-indexed. Page size is 200 items.