curl --request GET \
--url https://api.mijnklantportaal.nl/v1/files \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "fsf_abc12345678",
"type": "file",
"name": "contract_v2.pdf",
"size": 1284,
"mime": "application/pdf",
"fileShareId": "fss_abc12345678",
"createdAt": "2024-04-29T21:00:00+02:00"
}
]
}Getting all your files and directories in the given directory
curl --request GET \
--url https://api.mijnklantportaal.nl/v1/files \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "fsf_abc12345678",
"type": "file",
"name": "contract_v2.pdf",
"size": 1284,
"mime": "application/pdf",
"fileShareId": "fss_abc12345678",
"createdAt": "2024-04-29T21:00:00+02:00"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
ID of the directory to get the files and directories from.
"fsd_abc12345678"
A non-paginated response with files and directories
Array of Payment Link objects
Show child attributes