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

# List orders



## OpenAPI

````yaml GET /orders
openapi: 3.1.0
info:
  title: Wave Lines API
  version: 1.0.0
servers: []
security:
  - apiKey: []
tags:
  - name: lines
    description: Line lifecycle operations
  - name: payments
    description: Payment listing and lookup
  - name: payment-methods
    description: Payment method lifecycle operations
  - name: tax-receipts
    description: Tax receipt listing, lookup and document download
  - name: subscriptions
    description: Subscription lookup, product management and invoices
  - name: holders
    description: Holder (customer) listing, lookup and creation
  - name: usage
    description: 'Usage: per-product line balance and consumption'
  - name: Portability
    description: >-
      Number portability: port-in request creation, listing, modification and
      cancellation, plus the consolidated portability status
  - name: Inventory
    description: >-
      Inventory resource pools: pool listing, the resources held in a pool and
      resource reservations
  - name: Catalog
    description: Catalog offers exposed by the Wave Catalog API
  - name: orders
    description: Order listing and lookup, proxied from the Order API
paths:
  /orders:
    get:
      tags:
        - orders
      parameters:
        - schema:
            type: string
            format: uuid
          in: query
          name: resourceId
          required: false
        - schema:
            type: string
            enum:
              - PENDING
              - IN_PROGRESS
              - COMPLETED
              - FAILED
              - ROLLING_BACK
              - ROLLED_BACK
              - ROLLBACK_FAILED
              - CANCELLING
              - CANCELLED
              - CANCEL_FAILED
          in: query
          name: status
          required: false
        - schema:
            type: string
            format: uuid
          in: query
          name: brokerId
          required: false
        - schema:
            type: number
            exclusiveMinimum: 0
            default: 1
          in: query
          name: page
          required: false
        - schema:
            type: number
            exclusiveMinimum: 0
            maximum: 100
            default: 10
          in: query
          name: pageSize
          required: false
        - schema:
            type: string
            format: uuid
          in: header
          name: x-broker-id
          required: false
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        type:
                          type: string
                        status:
                          type: string
                          enum:
                            - PENDING
                            - IN_PROGRESS
                            - COMPLETED
                            - FAILED
                            - ROLLING_BACK
                            - ROLLED_BACK
                            - ROLLBACK_FAILED
                            - CANCELLING
                            - CANCELLED
                            - CANCEL_FAILED
                        resource:
                          type: object
                          properties:
                            type:
                              type: string
                            id:
                              type: string
                          required:
                            - type
                            - id
                          additionalProperties: false
                        brokerId:
                          type: string
                        externalCode:
                          type: string
                        correlationId:
                          type: string
                        createdAt:
                          type: string
                        updatedAt:
                          type: string
                      required:
                        - id
                        - type
                        - status
                        - resource
                        - brokerId
                        - externalCode
                        - correlationId
                        - createdAt
                        - updatedAt
                      additionalProperties: false
                  meta:
                    type: object
                    properties:
                      total:
                        type: integer
                        minimum: 0
                      page:
                        type: integer
                        exclusiveMinimum: 0
                      pageSize:
                        type: integer
                        exclusiveMinimum: 0
                      totalPages:
                        type: integer
                        minimum: 0
                    required:
                      - total
                      - page
                      - pageSize
                      - totalPages
                    additionalProperties: false
                required:
                  - items
                  - meta
                additionalProperties: false
        '400':
          description: Error response as an RFC 9457 problem detail.
          content:
            application/problem+json:
              schema:
                type: object
                description: RFC 9457 problem details error response.
                required:
                  - type
                  - title
                  - status
                additionalProperties: true
                properties:
                  type:
                    type: string
                    description: A URI reference that identifies the problem type.
                    enum:
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/validation-error
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/unauthorized
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/forbidden
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/not-found
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/conflict
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/invalid-status-transition
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/internal-server-error
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/not-acceptable
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/portability-rejected
                  title:
                    type: string
                    description: A short, human-readable summary of the problem type.
                  status:
                    type: integer
                    description: The HTTP status code.
                  detail:
                    type: string
                    description: >-
                      A human-readable explanation specific to this occurrence
                      of the problem.
                  instance:
                    type: string
                    description: >-
                      A URI reference that identifies the specific occurrence of
                      the problem.
        '401':
          description: Error response as an RFC 9457 problem detail.
          content:
            application/problem+json:
              schema:
                type: object
                description: RFC 9457 problem details error response.
                required:
                  - type
                  - title
                  - status
                additionalProperties: true
                properties:
                  type:
                    type: string
                    description: A URI reference that identifies the problem type.
                    enum:
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/validation-error
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/unauthorized
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/forbidden
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/not-found
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/conflict
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/invalid-status-transition
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/internal-server-error
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/not-acceptable
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/portability-rejected
                  title:
                    type: string
                    description: A short, human-readable summary of the problem type.
                  status:
                    type: integer
                    description: The HTTP status code.
                  detail:
                    type: string
                    description: >-
                      A human-readable explanation specific to this occurrence
                      of the problem.
                  instance:
                    type: string
                    description: >-
                      A URI reference that identifies the specific occurrence of
                      the problem.
        '404':
          description: Error response as an RFC 9457 problem detail.
          content:
            application/problem+json:
              schema:
                type: object
                description: RFC 9457 problem details error response.
                required:
                  - type
                  - title
                  - status
                additionalProperties: true
                properties:
                  type:
                    type: string
                    description: A URI reference that identifies the problem type.
                    enum:
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/validation-error
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/unauthorized
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/forbidden
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/not-found
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/conflict
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/invalid-status-transition
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/internal-server-error
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/not-acceptable
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/portability-rejected
                  title:
                    type: string
                    description: A short, human-readable summary of the problem type.
                  status:
                    type: integer
                    description: The HTTP status code.
                  detail:
                    type: string
                    description: >-
                      A human-readable explanation specific to this occurrence
                      of the problem.
                  instance:
                    type: string
                    description: >-
                      A URI reference that identifies the specific occurrence of
                      the problem.
        '500':
          description: Error response as an RFC 9457 problem detail.
          content:
            application/problem+json:
              schema:
                type: object
                description: RFC 9457 problem details error response.
                required:
                  - type
                  - title
                  - status
                additionalProperties: true
                properties:
                  type:
                    type: string
                    description: A URI reference that identifies the problem type.
                    enum:
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/validation-error
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/unauthorized
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/forbidden
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/not-found
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/conflict
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/invalid-status-transition
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/internal-server-error
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/not-acceptable
                      - >-
                        https://docs.bemobiwave.com/api-reference/errors/portability-rejected
                  title:
                    type: string
                    description: A short, human-readable summary of the problem type.
                  status:
                    type: integer
                    description: The HTTP status code.
                  detail:
                    type: string
                    description: >-
                      A human-readable explanation specific to this occurrence
                      of the problem.
                  instance:
                    type: string
                    description: >-
                      A URI reference that identifies the specific occurrence of
                      the problem.
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key

````