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
          • POSTDecode payloads
          • POSTEncode payloads
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 APIcodec

Decode payloads

||View as Markdown|
POST
https://host.com/v1/codec/decode
POST
/v1/codec/decode
$curl -X POST https://host.com/v1/codec/decode \
> -H "Content-Type: application/json" \
> -d '{
> "payload": "H4sIAAAAAAAA/ytJLS4BAAx+f9gEAAAA",
> "encoding": "gzip"
>}'
200Successful
1{
2 "workflowId": "order-processing-123",
3 "runId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
4 "decodedPayload": {
5 "orderId": "ORD-20240615-001",
6 "customer": {
7 "name": "Jane Doe",
8 "email": "jane.doe@example.com"
9 },
10 "items": [
11 {
12 "productId": "SKU-12345",
13 "quantity": 2,
14 "price": 19.99
15 },
16 {
17 "productId": "SKU-67890",
18 "quantity": 1,
19 "price": 49.99
20 }
21 ],
22 "total": 89.97,
23 "status": "processed"
24 }
25}

Decode (decompress) payloads for Temporal Web UI display.

Previous

Current User Info

Next

Encode payloads

Response

Successful Response