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
    • DSX Air Simulation
    • 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 Template Rendering System
      • Render Service
      • Filter quick reference
      • Template expansion
        • GETHealthcheck
        • GETCurrent User Info
          • POSTRender All
          • POSTRender Batch
          • POSTRender
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
ServicesTemplate Rendering ServiceRender Service APIrender

Render Batch

||View as Markdown|
POST
https://host.com/v1/render/batch
POST
/v1/render/batch
$curl -X POST https://host.com/v1/render/batch \
> -H "Content-Type: application/json" \
> -d '{
> "device_uuids": [
> "a3f47c9e-8b2d-4f1a-9c3e-2d7b5f6a1e4c",
> "b7d9e2f1-4c3a-4e5b-8f7d-9a1c2b3d4e5f"
> ]
>}'
1{
2 "message": "Queued renders for 2 devices with 1 failure",
3 "queued_count": 1,
4 "failed_devices": [
5 {
6 "device_uuid": "b7d9e2f1-4c3a-4e5b-8f7d-9a1c2b3d4e5f",
7 "error": "Device offline, unable to queue render"
8 }
9 ],
10 "max_concurrency": 10,
11 "total_devices": 2
12}
Queue renders for a specific list of devices with optimized batch processing.
Previous

Render All

Next

Render

Request

This endpoint expects an object.
device_uuidslist of stringsRequired
commit_messagestring or nullOptional
max_concurrencyintegerOptionalDefaults to 20

Response

Render produced no diff
messagestring
queued_countinteger
failed_deviceslist of objects or null
Devices that failed to queue
max_concurrencyinteger or null

Maximum concurrent renders (batch only)

total_devicesintegerDefaults to 0
Total number of devices targeted

Errors

404
Not Found Error
409
Conflict Error
422
Unprocessable Entity Error