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

Encode payloads

||View as Markdown|
POST
https://host.com/v1/codec/encode
POST
/v1/codec/encode
$curl -X POST https://host.com/v1/codec/encode \
> -H "Content-Type: application/json" \
> -d '{
> "payload": {
> "workflowId": "order-processing-123",
> "runId": "a1b2c3d4e5f678901234567890abcdef",
> "taskQueue": "order_tasks",
> "input": {
> "orderId": 987654321,
> "customer": {
> "name": "Jane Doe",
> "email": "jane.doe@example.com"
> },
> "items": [
> {
> "productId": "SKU-12345",
> "quantity": 2
> },
> {
> "productId": "SKU-67890",
> "quantity": 1
> }
> ]
> }
> },
> "encoding": "gzip"
>}'
200Successful
1{
2 "encodedPayload": "H4sIAAAAAAAA/0rOzy0oSi0uTk0FAA0JBF0NAAAA",
3 "encoding": "gzip",
4 "originalSize": 256,
5 "compressedSize": 128
6}

Encode (compress) payloads for Temporal Web UI when editing.

Previous

Decode payloads

Next

Get Devices

Response

Successful Response