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

# Integration Request Flows

> The flows you can ask for when requesting a new integration. Use the `value` of each in the `flows` field of an integration request.



## OpenAPI

````yaml get /integration-requests/flows
openapi: 3.1.0
info:
  description: >

    Trackstar is a Unified API that provides standard endpoints for Supply Chain
    Logistics. We currently offer an API for Warehouse Management Systems (WMS).
  title: Trackstar API
  version: 0.1.0
servers:
  - description: Trackstar API
    url: https://production.trackstarhq.com
security: []
tags: []
externalDocs:
  description: Trackstar API Documentation
  url: https://docs.trackstarhq.com
paths:
  /integration-requests/flows:
    get:
      summary: Integration Request Flows
      description: >-
        The flows you can ask for when requesting a new integration. Use the
        `value` of each in the `flows` field of an integration request.
      operationId: get_GET__integration-requests_flows
      parameters:
        - in: query
          name: integration_type
          description: Only return flows for this integration type. Omit to get every type.
          schema:
            type: string
            enum:
              - wms
              - cart
              - carrier
            example: wms
          required: false
        - in: header
          name: x-trackstar-api-key
          description: Your organization-level Trackstar API key.
          schema:
            type: string
            example: <x-trackstar-api-key>
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IntegrationRequestFlowsResponseSchema'
          description: Successful response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationError'
          description: Validation error
components:
  schemas:
    IntegrationRequestFlowsResponseSchema:
      type: object
      properties:
        flows:
          type: array
          description: The flows you can ask for on an integration request.
          items:
            $ref: '#/components/schemas/IntegrationRequestFlow'
      required:
        - flows
      additionalProperties: false
      title: IntegrationRequestFlowsResponseSchema
    ValidationError:
      properties:
        error:
          type: string
        detail:
          type: object
          properties:
            <location>:
              type: object
              properties:
                <field_name>:
                  type: array
                  items:
                    type: string
      required:
        - error
      type: object
      title: ValidationError
    IntegrationRequestFlow:
      type: object
      properties:
        value:
          type: string
          description: Send this in the flows field of an integration request.
          example: read_orders
        label:
          type: string
          description: Human-readable name for the flow.
          example: Orders & shipments
        direction:
          type: string
          description: >-
            Whether we read this data from the system or write it to the system.
            Requesting any write flow means we need sandbox credentials.
          example: read
        integration_type:
          type: string
          description: The integration type this flow belongs to.
          example: wms
      required:
        - direction
        - integration_type
        - label
        - value
      additionalProperties: false
      title: IntegrationRequestFlow

````