For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • NVIDIA Switch Infrastructure
    • I want to...
  • Quick Start
    • Start Here
    • Getting Started with Config Manager
    • TUI Wizard Reference
    • Configuration Samples
    • Interfaces
    • Local Development Quick Start
    • First Run Tour
  • Config Manager Overview
    • Config Manager Concepts
    • Getting Started with Nautobot
  • User Guides
    • New Site Bringup
    • Workflow Lifecycle
  • Deployment
    • Hosting Options
    • Network Topology Requirements
    • Firewall Ports
    • Airgapped Deployment
    • Troubleshooting
  • Services
      • Network ZTP
      • ZTP Architecture
      • Configuration Guide
      • Upload Images
      • ZTP API
        • GETHealthcheck
        • GETCurrent User Info
          • GETList All Files
          • GETList Files
          • GETLoad Object
          • POSTUpload File
          • GETLoad Checksum
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright © 2026, NVIDIA Corporation.

LogoLogo
ServicesNetwork ZTP ServiceZTP APIfiles

List All Files

||View as Markdown|
GET
https://host.com/v1/files/
GET
/v1/files/
$curl https://host.com/v1/files/ \
> -H "Content-Type: application/json"
1[
2 {
3 "key": "documents/report_2024_q1.pdf",
4 "last_modified": "2024-01-15T09:30:00Z",
5 "size": 254321,
6 "etag": "9a0364b9e99bb480dd25e1f0284c8555",
7 "metadata": {
8 "author": "Jane Doe",
9 "department": "Finance"
10 },
11 "tags": {
12 "confidential": "true",
13 "category": "financial"
14 }
15 }
16]
List all files and their metadata in the storage backend.
Previous

Validate Serial

Next

List Files

Response

Successful Response
keystring

Object key/path

last_modifieddatetime or double
Last modification timestamp
sizeinteger
Object size in bytes
etagstring or null
ETag hash
metadatamap from strings to strings or null
Object metadata
tagsmap from strings to strings or null
Object tags

Errors

404
Not Found Error