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

# Get user tasks

> Returns tasks split into two lists:
- myTasks: Tasks assigned to the current staff member
- availableTasks: Unassigned tasks (staff_id IS NULL) ordered by priority

Priority order for availableTasks:
1. Tasks related to orders with status='arrived' (urgent)
2. Dispatch actions
3. Sweeps
4. Pick lists
5. Receiving
6. Restocking (lowest priority)



## OpenAPI

````yaml api-reference/v1/openapi.yaml get /v1/tasks
openapi: 3.1.0
info:
  title: Goods API
  version: 1.0.0
  description: >-
    API for Goods grocery operations - scanner app, admin dashboard, and
    customer features
  contact:
    name: Goods Team
    url: https://goods.app
servers:
  - url: http://localhost:3000
    description: Local development
  - url: https://dev.api.switchyard.run
    description: Development
  - url: https://api.switchyard.run
    description: Production
security: []
tags:
  - name: v1
    description: API v1 - unified domain-based endpoints
  - name: Scanner
    description: Scanner app endpoints for drivers and pickers
  - name: Sweeps
    description: Sweep management - retail store pickup operations
  - name: RFC Picks
    description: Ready-for-checkout picking operations
  - name: Inventory
    description: Inventory management and barcode lookup
  - name: Admin
    description: Admin dashboard endpoints
  - name: Orders
    description: Order management
  - name: Products
    description: Product catalog management
  - name: Notifications
    description: Push, email, SMS, and Slack notification management
paths:
  /v1/tasks:
    get:
      tags:
        - Scanner
      summary: Get user tasks
      description: >-
        Returns tasks split into two lists:

        - myTasks: Tasks assigned to the current staff member

        - availableTasks: Unassigned tasks (staff_id IS NULL) ordered by
        priority


        Priority order for availableTasks:

        1. Tasks related to orders with status='arrived' (urgent)

        2. Dispatch actions

        3. Sweeps

        4. Pick lists

        5. Receiving

        6. Restocking (lowest priority)
      responses:
        '200':
          description: List of user tasks
          content:
            application/json:
              schema:
                type: object
                properties:
                  myTasks:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        type:
                          type: string
                          enum:
                            - dispatch
                            - sweep
                            - pick_list
                            - receiving
                            - restocking
                        title:
                          type: string
                        subtitle:
                          type: string
                        status:
                          type: string
                        scheduledTime:
                          type: string
                        priority:
                          type: string
                          enum:
                            - urgent
                            - high
                            - medium
                            - low
                        hasArrivedOrder:
                          type: boolean
                          description: >-
                            True if this task is related to an order with
                            status=arrived
                        orderId:
                          type: string
                        data:
                          nullable: true
                      required:
                        - id
                        - type
                        - title
                        - status
                    description: Tasks assigned to the current staff member
                  availableTasks:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        type:
                          type: string
                          enum:
                            - dispatch
                            - sweep
                            - pick_list
                            - receiving
                            - restocking
                        title:
                          type: string
                        subtitle:
                          type: string
                        status:
                          type: string
                        scheduledTime:
                          type: string
                        priority:
                          type: string
                          enum:
                            - urgent
                            - high
                            - medium
                            - low
                        hasArrivedOrder:
                          type: boolean
                          description: >-
                            True if this task is related to an order with
                            status=arrived
                        orderId:
                          type: string
                        data:
                          nullable: true
                      required:
                        - id
                        - type
                        - title
                        - status
                    description: Unassigned tasks available to pick up
                  myTasksCount:
                    type: number
                  availableTasksCount:
                    type: number
                  error:
                    type: string
                required:
                  - myTasks
                  - availableTasks
                  - myTasksCount
                  - availableTasksCount
        '500':
          description: Server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error

````