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

# Get Return

> Retrieve a single cached return by ID.



## OpenAPI

````yaml unified-cache-api.json get /returns/{id}
openapi: 3.0.3
info:
  title: Handled Unified Cache API
  description: >-
    Access cached data from connected accounts for faster bulk operations. Data
    is synchronized periodically, enabling fast queries without hitting
    underlying service rate limits.
  version: 1.0.0
  contact:
    email: support@usehandled.io
servers:
  - url: https://api.usehandled.io/api/v1/ipaas/unified_cache
    description: Production
security:
  - bearerAuth: []
paths:
  /returns/{id}:
    get:
      tags:
        - Returns
      summary: Get Return
      description: Retrieve a single cached return by ID.
      operationId: getReturn
      parameters:
        - $ref: '#/components/parameters/integrated_account_id'
        - $ref: '#/components/parameters/resource_id'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Return'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  parameters:
    integrated_account_id:
      name: integrated_account_id
      in: query
      required: true
      description: The ID of the connected account to query
      schema:
        type: string
    resource_id:
      name: id
      in: path
      required: true
      description: Resource ID
      schema:
        type: string
  schemas:
    Return:
      type: object
      properties:
        id:
          type: string
        order_id:
          type: string
        status:
          type: string
        reason:
          type: string
        line_items:
          type: array
          items:
            type: object
            properties:
              product_id:
                type: string
              sku:
                type: string
              quantity:
                type: integer
              reason:
                type: string
        tracking_number:
          type: string
        carrier:
          type: string
        refund_amount:
          type: number
        currency:
          type: string
        created_at:
          type: string
          format: date-time
        updated_at:
          type: string
          format: date-time
        cached_at:
          type: string
          format: date-time
          description: When this record was last cached
  responses:
    NotFound:
      description: Resource not found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API token from your Handled dashboard

````