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

# List all SKU change requests (internal only)



## OpenAPI

````yaml https://api.wirespeed.co/v1/openapi.json post /v1/team/sku-change-requests
openapi: 3.0.0
info:
  title: Wirespeed API
  description: The public Wirespeed API. v1 is the first stable contract.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.wirespeed.co
security: []
tags: []
paths:
  /v1/team/sku-change-requests:
    post:
      tags:
        - Team
      summary: List all SKU change requests (internal only)
      operationId: TeamController_listSkuChangeRequests
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ListSkuChangeRequestsPaginatedDto'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SkuChangeRequestSearchResult'
        '400':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HttpError'
      security:
        - bearer: []
components:
  schemas:
    ListSkuChangeRequestsPaginatedDto:
      type: object
      properties:
        size:
          type: number
        page:
          type: number
        filter:
          type: string
        search:
          type: string
        orderBy:
          type: string
        orderDir:
          type: string
          enum:
            - asc
            - desc
        status:
          type: string
          enum:
            - open
            - closed
          description: >-
            open = pending; closed =
            accepted/denied/accepted_with_modifications/cancelled
        hideCancelled:
          type: boolean
          description: >-
            When true (default), cancelled requests are excluded from closed
            results
      required:
        - status
    SkuChangeRequestSearchResult:
      type: object
      properties:
        data:
          description: Array of SKU change requests
          type: array
          items:
            $ref: '#/components/schemas/SkuChangeRequestDto'
        totalCount:
          type: number
          description: Total number of requests matching the query
      required:
        - data
        - totalCount
    HttpError:
      type: object
      properties:
        message:
          type: string
        statusCode:
          type: number
      required:
        - message
        - statusCode
    SkuChangeRequestDto:
      type: object
      properties:
        id:
          type: string
        teamId:
          type: string
        teamName:
          type: string
        parentTeamName:
          type: string
          nullable: true
        requesterName:
          type: string
        requesterEmail:
          type: string
        reviewerName:
          type: string
          nullable: true
        reviewerEmail:
          type: string
          nullable: true
        currentSku:
          type: string
          enum:
            - identity
            - adr
        requestedSku:
          type: string
          enum:
            - identity
            - adr
        status:
          type: string
          enum:
            - pending
            - accepted
            - denied
            - accepted_with_modifications
            - cancelled
        createdAt:
          type: string
        updatedAt:
          type: string
        isTrial:
          type: boolean
          nullable: true
          description: Live team isTrial from JOIN
        skuStartDate:
          type: string
          nullable: true
          description: Live team skuStartDate from JOIN
        skuEndDate:
          type: string
          nullable: true
          description: Live team skuEndDate from JOIN
      required:
        - id
        - teamId
        - teamName
        - requesterName
        - requesterEmail
        - currentSku
        - requestedSku
        - status
        - createdAt
        - updatedAt
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````