> ## 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 lines



## OpenAPI

````yaml GET /lines
openapi: 3.1.0
info:
  title: Wave Lines API
  version: 1.0.0
servers: []
security:
  - client_id: []
    secret_key: []
tags:
  - name: lines
    description: Line lifecycle operations
  - name: payments
    description: Payment listing and lookup
  - 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
paths:
  /lines:
    get:
      tags:
        - lines
      parameters:
        - schema:
            type: array
            items:
              type: string
              enum:
                - PROVISIONING
                - PROVISIONING_ERROR
                - STAND_BY
                - ACTIVATING
                - ACTIVATION_ERROR
                - ACTIVE
                - BLOCKING
                - BLOCKING_ERROR
                - BLOCKED
                - TERMINATING
                - TERMINATION_ERROR
                - TERMINATED
          in: query
          name: status
          required: false
        - schema:
            type: string
            format: date-time
          in: query
          name: activatedAtFrom
          required: false
        - schema:
            type: string
            format: date-time
          in: query
          name: activatedAtTo
          required: false
        - schema:
            type: string
          in: query
          name: msisdn
          required: false
        - schema:
            type: string
          in: query
          name: holderId
          required: false
        - schema:
            type: string
          in: query
          name: search
          required: false
        - schema:
            type: string
            enum:
              - activatedAt
              - holderName
            default: activatedAt
          in: query
          name: orderBy
          required: false
        - schema:
            type: string
            enum:
              - ASC
              - DESC
            default: DESC
          in: query
          name: sortOrder
          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
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  lines:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                        status:
                          type: string
                          enum:
                            - PROVISIONING
                            - PROVISIONING_ERROR
                            - STAND_BY
                            - ACTIVATING
                            - ACTIVATION_ERROR
                            - ACTIVE
                            - BLOCKING
                            - BLOCKING_ERROR
                            - BLOCKED
                            - TERMINATING
                            - TERMINATION_ERROR
                            - TERMINATED
                        msisdn:
                          type: string
                        iccId:
                          type: string
                        holder:
                          type: object
                          properties:
                            id:
                              type: string
                            name:
                              type: string
                            federalTaxId:
                              type: string
                          required:
                            - id
                            - name
                            - federalTaxId
                          additionalProperties: false
                        subscriptionId:
                          type:
                            - 'null'
                            - string
                        createdAt:
                          type: string
                          format: date-time
                        updatedAt:
                          type: string
                          format: date-time
                        activatedAt:
                          anyOf:
                            - type: string
                              format: date-time
                            - type: 'null'
                        terminatedAt:
                          anyOf:
                            - type: string
                              format: date-time
                            - type: 'null'
                        externalCode:
                          type:
                            - 'null'
                            - string
                        brokerId:
                          type:
                            - 'null'
                            - string
                        metadata:
                          type: object
                          additionalProperties:
                            type: string
                      required:
                        - id
                        - status
                        - msisdn
                        - iccId
                        - holder
                        - subscriptionId
                        - createdAt
                        - updatedAt
                        - activatedAt
                        - terminatedAt
                        - externalCode
                        - brokerId
                        - metadata
                      additionalProperties: false
                  total:
                    type: integer
                    minimum: 0
                required:
                  - lines
                  - total
                additionalProperties: false
components:
  securitySchemes:
    client_id:
      type: apiKey
      in: header
      name: client_id
    secret_key:
      type: apiKey
      in: header
      name: secret_key

````