Skip to main content

Get Uploaded Files

POST /api/v1/files

This API allows the authenticated user to retrieve a paginated list of files they have uploaded.

Headers

NameTypeRequired
x-api-keystringYes
x-api-secretstringYes
pageintegerYes
limitintegerYes

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
}
}
POST/api/v1/files
x-api-key
x-api-secret