curl --request GET \
--url https://api.hyperline.co/v1/files \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "fil_2QdJDDUej969ev",
"name": "invoice_2024.pdf",
"type": "pdf",
"mimetype": "application/pdf",
"customer_id": "cus_QalW2vTAdkR6IY",
"created_at": "2024-11-12T07:38:39.222Z"
}
]
}Retrieve existing files.
curl --request GET \
--url https://api.hyperline.co/v1/files \
--header 'Authorization: Bearer <token>'{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0,
"approximateCount": false
},
"data": [
{
"id": "fil_2QdJDDUej969ev",
"name": "invoice_2024.pdf",
"type": "pdf",
"mimetype": "application/pdf",
"customer_id": "cus_QalW2vTAdkR6IY",
"created_at": "2024-11-12T07:38:39.222Z"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
0 <= x <= 100x >= 0Was this page helpful?