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
      • Overview
      • Architecture
        • GETCurrent User Info
          • GETGet all configs for a device
          • POSTBatch create/update config files
          • GETGet a config file
          • POSTCreate or update a config file
          • GETGet diff between two versions
          • GETList all versions of a config file
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
ServicesConfig Store ServiceConfig Store APIconfig

Get all configs for a device

||View as Markdown|
GET
https://host.com/v1/config/device/:device_uuid
GET
/v1/config/device/:device_uuid
$curl https://host.com/v1/config/device/device_uuid \
> -H "Content-Type: application/json"
1[
2 {
3 "author": "admin@example.com",
4 "commit_message": "Updated interface configuration for VLAN adjustments",
5 "content": "interface GigabitEthernet0/1\n description Uplink to Core Switch\n switchport mode trunk\n switchport trunk allowed vlan 10,20,30\n no shutdown\n!",
6 "content_hash": "3a7bd3e2360a3f1e5b8f9c2d4e6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a",
7 "created_at": "2024-01-15T09:30:00Z",
8 "device_uuid": "123e4567-e89b-12d3-a456-426614174000",
9 "file_type": "intended",
10 "filename": "switch-01-intended.cfg",
11 "id": "9f8c7d6e-5b4a-3c2d-1e0f-9a8b7c6d5e4f",
12 "version": 3,
13 "device": {
14 "name": "Switch-01",
15 "site": "Data Center 1",
16 "last_updated": "2024-01-15T09:30:00Z",
17 "nautobot_url": "https://nautobot.example.com/dcim/devices/123e4567-e89b-12d3-a456-426614174000",
18 "platform": "Cisco IOS XE",
19 "primary_ip4": "192.168.1.10",
20 "rack": "Rack-22",
21 "role": "Access Switch"
22 }
23 }
24]
Get all latest configuration files for a device.
Previous

Get database statistics

Next

Batch create/update config files

Path parameters

device_uuidstringRequiredformat: "uuid"

Query parameters

file_typeenum or nullOptional
Enum for config file types.
Allowed values:

Response

Successful Response
authorstring
Author email
commit_messagestring
Commit message
contentstring
Configuration file content
content_hashstring
SHA256 hash of content
created_atdatetime
Timestamp when version was created
device_uuidstringformat: "uuid"
Device UUID
file_typeenum

Config file type (intended or backup)

Allowed values:
filenamestring
File name
idstringformat: "uuid"
Config file ID
versioninteger
Version number
deviceobject or null
Device metadata from Nautobot

Errors

422
Unprocessable Entity Error