Get File Upload Info
File
Get File Upload Info
Retrieves information about uploaded files with various filtering and pagination options.
GET
Get File Upload Info
This endpoint requires authentication. Include your Bearer token in the Authorization header.
Description
Query Parameters:q: Search term to filter files by various fieldstype: Filter files by type (royalty, invoice, receipt, report)column: The column to sort by (createdAt, updatedAt, name, size, type)order: The order of sorting (asc, desc)attributes: Comma-separated list of attributes to include in the responsepage: The page number for pagination (must be >= 1, default: 1)size: The number of records per page (must be >= 0, default: 10)
pagemust be at least 1 (returns BadRequest error if < 1)sizemust be non-negative (returns BadRequest error if < 0)- Invalid
columnvalues will be ignored and default to ‘createdAt’ - Invalid
ordervalues will default to ‘desc’
Code Examples
Authorizations
JWT Authorization header using the Bearer scheme. Format: "Bearer {token}"
Query Parameters
Search term to filter files by various fields
Filter files by type
Available options:
royalty, invoice, receipt, report The column to sort by
Available options:
createdAt, updatedAt, name, size, type The order of sorting
Available options:
asc, desc Comma-separated list of attributes to include
The page number for pagination
Required range:
x >= 1The number of records per page
Required range:
x >= 0