Get a list of attachments for a card
GET /io/card/:cardId/attachment
Get a list of attachments for a card.
Example Request
curl -X GET \ https://myaccount.leankit.com/io/card/943206946/attachment \ -H 'Authorization: Basic base64encodedauthhere'
Example Successful Response
200 Success
{
"attachments": [
{
"id": "943867019",
"attachmentSize": 12565,
"createdBy": {
"id": "478440842",
"emailAddress": "user@planview.com",
"fullName": "First Last",
"avatar": "https://myaccount.leankit.com/avatar/Show/478440842?s=25"
},
"createdOn": "2025-08-12T20:52:48Z",
"updatedOn": "2025-08-12T20:52:48Z",
"description": "This is a sample attachment",
"name": "sample.txt"
}
]
}

