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
          • GETCheck cache service status
          • GETTest cache lookup for a device
          • GETList all devices
          • GETSearch devices by name with latest config info
          • DELPermanently delete all configs for a device
          • GETGet database statistics
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 APIadmin

Test cache lookup for a device

||View as Markdown|
GET
https://host.com/v1/admin/cache/test/:device_uuid
GET
/v1/admin/cache/test/:device_uuid
$curl https://host.com/v1/admin/cache/test/device_uuid \
> -H "Content-Type: application/json"
1{
2 "device_name": "EnviroSensor 3000",
3 "device_uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
4 "found": true,
5 "platform": "Linux",
6 "site": "Warehouse A"
7}
Test if a specific device can be found in cache.
Previous

Check cache service status

Next

List all devices

Path parameters

device_uuidstringRequiredformat: "uuid"

Response

Successful Response
CacheTestFoundResponseobject
Cache test response when device is found.
OR
CacheTestNotFoundResponseobject
Cache test response when device is not found.
OR
CacheTestErrorResponseobject
Cache test response when there's an error.

Errors

422
Unprocessable Entity Error