# List All Resources Returns list of all resources, which are available at the specific url path. Endpoint: GET /files/resources Version: 5 Security: apiKey ## Query parameters: - `url` (string) Path of requested directory for which resources should be listed. Example: "requestedDirectory/ or requestedDirectory/otherDirectory" - `startAfter` (string) Continuation token. Encoded s3 path from which listing resources should be started. Example: "1XUzntG%2FKE%2B5IN08GrJQgKin9OblLzlorehkIs1xlj46yyCktx%2FsZrQeTh2FvBKOLLB%2Fu%2F32Ow%2BRJfLUjMqi6gGGjsAQRPZ4u" - `limit` (integer) Allowed maximum elements. Example: "200" ## Response 200 fields (application/json): - `startAfter` (string) Value of continuation token from the request. Example: "1XUzntG%2FKE%2B5IN08GrJQgKin9OblLzlorehkIs1xlj46yyCktx%2FsZrQeTh2FvBKOLLB%2Fu%2F32Ow%2BRJfLUjMqi6gGGjsAQRPZ4u" - `limit` (integer) Number of items per page. Example: "100" - `nextStartAfter` (string) Value of continuation token required to retrieve results from next page. Should be passed in the next request as "startAfter" parameter. Example: "1XUzntG%2FKE%2B5IN08GrJQgKin9OblLzlorehkIs1xlj46yyCktx%2FsZrQeTh2FvBKOLLB%2Fu%2F32Ow%2BRJfLUjMqi6gGGjsAQRPZ4u" - `files` (array) Array of FileResource objects. - `files.url` (string) Url of file stored. Example: "/customer-upload/file.xlsx" - `files.createdBy` (string) Creator of a resource. Example: "76248934691294444" - `files.createdAt` (string) Date of creation (ISO 8601-compliant). Example: "2025-09-10T10:12:36Z" - `files.modifiedAt` (string) Date of modification (ISO 8601-compliant). Example: "2025-09-10T10:12:36Z"