List all of your attachments in the Dashboard's file system.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET '/api/attachments' \
--header 'Authorization: Bearer <token>'
Responses
application/json {
"items": [
{
"id": 1920,
"name": "disputeinfo.pdf",
"type": "application/pdf",
"size": 245311,
"createdOn": "2023-05-17 13:05:42"
},
{
"id": 1919,
"name": "signature.pdf",
"type": "application/pdf",
"size": 245311,
"createdOn": "2023-05-17 09:23:57"
}
],
"_links": {
"self": {
"href": "https://zendashboard.com/api/attachments?page=1"
},
"first": {
"href": "https://zendashboard.com/api/attachments?page=1"
},
"last": {
"href": "https://zendashboard.com/api/attachments?page=1"
}
},
"_meta": {
"totalCount": 2,
"pageCount": 1,
"currentPage": 1,
"perPage": 30
}
}
Modified at 2025-08-09 05:39:41