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 Infrastructure Automation with Temporal
      • Temporal Deployment Process
      • Temporal CLI
      • Workflows for Day 2 Operations
      • Temporal API
        • GETHealthcheck
        • GETRBAC Config Status
        • GETCurrent User Info
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
ServicesTemporal ServiceTemporal API

RBAC Config Status

||View as Markdown|
GET
https://host.com/rbac-config-status
GET
/rbac-config-status
$curl https://host.com/rbac-config-status \
> -H "Content-Type: application/json"
200Retrieved
1{
2 "file_exists": true,
3 "status": "ok",
4 "error": null,
5 "workflows": {
6 "OrderProcessingWorkflow": {
7 "execute_roles": [
8 "admin",
9 "operator"
10 ],
11 "read_roles": [
12 "viewer",
13 "auditor"
14 ]
15 },
16 "UserRegistrationWorkflow": {
17 "execute_roles": [
18 "admin",
19 "user_manager"
20 ],
21 "read_roles": [
22 "support",
23 "auditor"
24 ]
25 }
26 },
27 "workflows_count": 2
28}
Check the status of the RBAC configuration and return the mapping.
Previous

Healthcheck

Next

Current User Info

Response

Successful Response
file_existsboolean
statusenum
Allowed values:
errorstring or null
workflowsmap from strings to objects or null
workflows_countinteger or null