> ## Documentation Index
> Fetch the complete documentation index at: https://docs.julep.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Decode Payloads

> Decodes a list of payloads from the request body.

Args:
    req (Request): The request containing the payloads to decode.

Returns:
    dict: A dictionary containing the decoded payloads, including any errors encountered.



## OpenAPI

````yaml https://api.julep.ai/api/openapi.json post /temporal/decode
openapi: 3.1.0
info:
  title: Julep Agents API
  description: API for Julep Agents
  termsOfService: https://www.julep.ai/terms
  contact:
    name: Julep
    url: https://www.julep.ai/
    email: developers@julep.ai
  version: 0.4.0
servers:
  - url: /api
security: []
paths:
  /temporal/decode:
    post:
      tags:
        - temporal
      summary: Decode Payloads
      description: |-
        Decodes a list of payloads from the request body.

        Args:
            req (Request): The request containing the payloads to decode.

        Returns:
            dict: A dictionary containing the decoded payloads, including any errors encountered.
      operationId: decode_payloads_temporal_decode_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}

````