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

# Get the available return reason codes

> Get the return reason codes available for a seller in one of its fulfillment warehouses. Returns the seller specific codes together with the ones configured for all sellers of that warehouse. Map the codes returned by the positions of `/returns`, not the descriptions, as those may change. Use `translations` where present to show a code in the language of your user, and the `label` otherwise.



## OpenAPI

````yaml /openapi.json get /returns/warehouse/{warehouseId}/seller/{sellerId}/reasons
openapi: 3.0.1
info:
  title: Connector
  version: '1.0'
  description: Enhanced Quivo API documentation with additional descriptions and examples
  contact:
    name: Quivo Support
    email: support@quivo.co
    url: https://quivo.co
  license:
    name: Proprietary
    url: https://quivo.co/terms
  termsOfService: https://quivo.co/terms
servers:
  - url: https://api.quivo.co/
    description: Production API server for Quivo Connector
security: []
tags:
  - name: addresses
    description: Manage stored addresses in the seller's address book
  - name: apiKeyRequests
    description: Request and manage API keys
  - name: articles
    description: Create and manage product articles
  - name: audits
    description: Access audit logs and history
  - name: auth
    description: Manage product bundles
  - name: bundles
    description: Get carrier information
  - name: carriers
    description: Manage contact information
  - name: contacts
    description: Get country information
  - name: countries
    description: Get currency information
  - name: currencies
    description: Manage customer inquiries
  - name: customerInquiries
    description: Access dashboard data
  - name: dashboards
    description: Manage file uploads and downloads
  - name: files
    description: Manage fulfillment plans
  - name: fulfillmentPlans
    description: Manage inbound shipments
  - name: inbounds
    description: Monitor and manage inventory items
  - name: invoices
    description: Get language information
  - name: items
    description: Manage notifications
  - name: languages
    description: Create and manage fulfillment orders
  - name: notifications
    description: Health check endpoint
  - name: orders
    description: Manage return applications
  - name: ping
    description: Manage return links
  - name: returnApp
    description: Manage returns
  - name: returnLinks
    description: Get seller information
  - name: returns
    description: Book and manage shipments
  - name: sellers
    description: Get shipping service groups
  - name: shipments
    description: Manage shop orders
  - name: shippingServiceGroups
    description: Manage shops
  - name: shopOrders
    description: Get system status
  - name: shops
    description: Manage stored addresses
  - name: status
    description: Manage subscription packages
  - name: storedAddresses
    description: Manage webhook subscriptions
  - name: subscriptionPackages
    description: Track shipments
  - name: subscriptions
    description: Manage transport services
  - name: track
    description: Manage users
  - name: transports
    description: Get warehouse information
  - name: users
  - name: warehouses
  - name: zendesk
paths:
  /returns/warehouse/{warehouseId}/seller/{sellerId}/reasons:
    get:
      tags:
        - returns
      summary: Get the available return reason codes
      description: >-
        Get the return reason codes available for a seller in one of its
        fulfillment warehouses. Returns the seller specific codes together with
        the ones configured for all sellers of that warehouse. Map the codes
        returned by the positions of `/returns`, not the descriptions, as those
        may change. Use `translations` where present to show a code in the
        language of your user, and the `label` otherwise.
      operationId: returnReasonsGet
      parameters:
        - name: sellerId
          in: path
          required: true
          schema:
            type: integer
            format: int64
          description: >-
            The unique identifier for the seller account. This ID is used to
            scope operations to a specific seller's data and resources.
        - name: warehouseId
          in: path
          description: >-
            The unique identifier for the warehouse location where items are
            stored and orders are fulfilled.
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReturnCodeGet'
components:
  schemas:
    ReturnCodeGet:
      type: object
      properties:
        code:
          type: string
        label:
          type: string
        translations:
          type: object
          additionalProperties:
            type: string

````