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
          • GETLoad Bootscript
          • GETLoad Configuration
          • GETLoad Firmware
          • GETLoad Firmware Checksum
          • GETLoad Firmware
          • POSTMark Provisioned
          • POSTValidate Serial
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 APIdevice

Load Bootscript

||View as Markdown|
GET
https://host.com/v1/device/:device_uuid/boot-script
GET
/v1/device/:device_uuid/boot-script
$curl https://host.com/v1/device/device_uuid/boot-script \
> -H "Content-Type: application/json"
1"#!/bin/bash\n# Boot script for device 3fa85f64-5717-4562-b3fc-2c963f66afa6\n\n# Set hostname\nhostnamectl set-hostname switch-nyc-01\n\n# Configure interfaces\nip link set eth0 up\nip addr add 192.168.1.10/24 dev eth0\n\n# Start essential services\nsystemctl start networking\nsystemctl enable sshd\n\n# Custom device initialization\n/usr/local/bin/device-init.sh\n"
Load the bootscript for the given nautobot device UUID.
Previous

Current User Info

Next

Load Configuration

Path parameters

device_uuidstringRequired

Response

Successful Response

Errors

404
Not Found Error
422
Unprocessable Entity Error