Get Uploaded Files
POST /api/v1/files
This API allows the authenticated user to retrieve a paginated list of files they have uploaded.
Headers
| Name | Type | Required |
|---|---|---|
x-api-key | string | Yes |
x-api-secret | string | Yes |
page | integer | Yes |
limit | integer | Yes |
Request Body
Sample Request
{}
Responses
Webhook Events
Schema
dataarray[]Array of result items.
metaobjectPagination metadata.
Sample Response
{
"data": [
{
"_id": "string",
"company": "string",
"uploadedUser": "string",
"originalName": "string",
"mimeType": "string",
"size": 0,
"path": "string",
"md5Hash": "string",
"createdAt": "string",
"updatedAt": "string",
"filename": "string"
}
],
"meta": {
"total": 0,
"page": 0,
"limit": 0,
"totalPages": 0
}
}