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

# Get order payments

> Retrieve a list of all recorded payments across orders. This endpoint returns details such as payment method, amount, status, and associated order, allowing you to review and manage transactions efficiently.



## OpenAPI

````yaml GET /2023-11/admin/payments
openapi: 3.0.3
info:
  title: Genuka V2 - API
  version: 1.0.0
  contact: {}
servers:
  - url: https://api-staging.genuka.com
  - url: https://api.genuka.com
security:
  - bearerAuth: []
tags:
  - name: Public Routes
  - name: Pages
  - name: Collections
  - name: Shops
  - name: Products
  - name: Articles
  - name: Discounts
  - name: Blogs
  - name: Company
  - name: Review
    description: |-
      ``` json
      {
      "title": "",
      "quantity": "",
      "product_variant": "",
      "date": "",
      "company_id": "",
      "shops": []
      }

       ```
  - name: Private Routes
  - name: Authentication
  - name: Apps
  - name: Accounting
  - name: Addresses
  - name: Customer
  - name: Analytics
  - name: Articles1
  - name: Availabilities
  - name: API Keys
  - name: Orders
  - name: Bills
  - name: Blogs1
  - name: Calendar Events
  - name: Collections1
  - name: Company1
  - name: Customers
  - name: Deliveries
    description: |-
      ``` json
      {
      "title": "",
      "quantity": "",
      "product_variant": "",
      "date": "",
      "company_id": "",
      "shops": []
      }

       ```
  - name: Discount
  - name: Domains
    description: |-
      ``` json
      {
      "domain": "",
      "company_id": ""
      }

       ```
  - name: Analytics1
  - name: Orders1
  - name: Payments
  - name: Pages1
  - name: Production
  - name: Bill of Materials
  - name: Payments1
  - name: Payments Methods
  - name: Workflows
  - name: New Folder
  - name: Wallet
  - name: Marketing
  - name: Campaigns
  - name: Templates
  - name: Products1
  - name: Product Variants
  - name: Analytics12
  - name: Services
    description: >-
      Services are "Products" that have a duration in minutes, a buffer time and
      a list of users able to provide the service.
  - name: SupplierProducts
  - name: Shops1
    description: >-
      Shops are sort of subsidiary of companies. A Company can have many Shops.
      Each shop can have 0 or more .  
        
      But all of them are properties of a Company.
  - name: Warehouses
    description: >-
      Warehouses are places where stocks are placed.


      Shop which are physical or virtual point of sales can be attached to one
      or many warehouses to take their products.
  - name: Stocks
    description: |-
      ``` json
      {
      "title": "",
      "quantity": "",
      "product_variant": "",
      "date": "",
      "company_id": "",
      "shops": []
      }

       ```
  - name: Review1
    description: |-
      ``` json
      {
      "title": "",
      "quantity": "",
      "product_variant": "",
      "date": "",
      "company_id": "",
      "shops": []
      }

       ```
  - name: ReviewCriterion
    description: |-
      ``` json
      {
      "title": "",
      "quantity": "",
      "product_variant": "",
      "date": "",
      "company_id": "",
      "shops": []
      }

       ```
  - name: StockMovements
    description: |-
      ``` json
      {
      "title": "",
      "quantity": "",
      "product_variant": "",
      "date": "",
      "company_id": "",
      "shops": []
      }

       ```
  - name: Suppliers
  - name: Treasury Accounts
    description: Comptes de trésorerie
  - name: Users
  - name: Wrapped
  - name: Returns
  - name: Webhooks
  - name: Customer Routes
  - name: Authentication1
  - name: Addresses1
  - name: Orders12
  - name: Payments12
  - name: Review12
    description: |-
      ``` json
      {
      "title": "",
      "quantity": "",
      "product_variant": "",
      "date": "",
      "company_id": "",
      "shops": []
      }

       ```
  - name: Developer Routes
  - name: Authentication12
  - name: Apps1
  - name: Apps Shortcut
  - name: Products12
    description: Developer can access a company product through its app
paths:
  /2023-11/admin/payments:
    get:
      tags:
        - Private Routes
        - Marketing
      summary: List Payments
      description: List Payments
      operationId: listPayments
      parameters:
        - name: filter[order_id]
          in: query
          schema:
            type: string
            example: 01k76xt7z87katy392s6w335cp
        - name: page
          in: query
          schema:
            type: string
            example: '1'
        - name: per_page
          in: query
          schema:
            type: string
            example: '10'
        - name: anonymous
          in: query
          schema:
            type: string
            example: 'false'
        - name: filter[type]
          in: query
          schema:
            type: string
            example: inbound
        - name: sort
          in: query
          schema:
            type: string
            example: '-created_at'
        - name: x-company
          in: header
          schema:
            type: string
            example: '{{companyId}}'
        - name: include
          in: query
          schema:
            type: string
            example: treasuryAccount
        - name: x-shopid
          in: header
          schema:
            type: string
            example: 01hhfyppk2jxvz7rwbxnpnbqfb
      requestBody:
        content:
          text/plain:
            examples:
              List Payments:
                value: |-
                  {
                    "amount": 160,
                    "method": "bank", // Comming from treasory account
                    "treasury_account_id": "01k1amyq08htzkeg79xd7f9pct" // Comming from treasory account
                  }
      responses:
        '200':
          description: 200 OK / 200
          headers:
            Cache-Control:
              schema:
                type: string
                example: no-cache, private
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Fri, 10 Oct 2025 10:12:36 GMT
            Server:
              schema:
                type: string
                example: nginx/1.18.0 (Ubuntu)
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Vary:
              schema:
                type: string
                example: Origin
            X-RateLimit-Limit:
              schema:
                type: string
                example: '6000'
            X-RateLimit-Remaining:
              schema:
                type: string
                example: '5999'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        address_id:
                          nullable: true
                          example: null
                        amount:
                          type: number
                          example: 160
                        company:
                          type: object
                          properties:
                            company_code:
                              nullable: true
                              example: null
                            created_at:
                              type: string
                              example: '2025-07-29T09:31:59.000000Z'
                            currency_code:
                              type: string
                              example: XAF
                            currency_name:
                              type: string
                              example: FCFA
                            description:
                              nullable: true
                              example: null
                            handle:
                              type: string
                              example: demo-company
                            id:
                              type: string
                              example: 01hqydxwtxdj3kmzp3bz7jk73g
                            logoUrl:
                              nullable: true
                              example: null
                            metadata:
                              type: object
                              properties:
                                payment_terms:
                                  type: object
                                  properties:
                                    accepted_at:
                                      type: string
                                      example: '2025-07-30T08:57:08.517Z'
                                    accepted_by:
                                      type: string
                                      example: 'Payton Donnelly '
                            name:
                              type: string
                              example: Demo Company
                            type:
                              type: string
                              example: business
                            updated_at:
                              type: string
                              example: '2025-07-30T09:57:08.000000Z'
                        company_id:
                          type: string
                          example: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at:
                          type: string
                          example: '2025-10-10T11:31:02.000000Z'
                        currency_code:
                          type: string
                          example: XAF
                        deleted_at:
                          nullable: true
                          example: null
                        due_date:
                          type: string
                          example: '2025-10-10T11:31:02.000000Z'
                        id:
                          type: string
                          example: 01k76y6zcdw3b6whc9n9ebv5pr
                        metadata:
                          type: object
                          properties:
                            distributed_payment:
                              type: boolean
                              example: true
                            order_id:
                              type: string
                              example: 01k76xt7z87katy392s6w335cp
                        method:
                          type: string
                          example: bank
                        paid_at:
                          type: string
                          example: '2025-10-10T11:31:02.000000Z'
                        payable:
                          type: object
                          properties:
                            amount:
                              type: number
                              example: 160
                            company_id:
                              type: string
                              example: 01hqydxwtxdj3kmzp3bz7jk73g
                            created_at:
                              type: string
                              example: '2025-10-10T11:31:02.000000Z'
                            currency_code:
                              type: string
                              example: XAF
                            deleted_at:
                              nullable: true
                              example: null
                            id:
                              type: string
                              example: 01k76y6zaxk79x0jjay70s2ecg
                            is_deposit:
                              type: boolean
                              example: true
                            is_final:
                              type: boolean
                              example: false
                            medias:
                              type: array
                              items: {}
                              example: []
                            metadata:
                              nullable: true
                              example: null
                            order_id:
                              type: string
                              example: 01k76xt7z87katy392s6w335cp
                            reference:
                              type: string
                              example: '#INV_1128'
                            shop_id:
                              type: string
                              example: 01k1amypzhgs7fngfx1r9d37pn
                            status:
                              type: string
                              example: paid
                            updated_at:
                              type: string
                              example: '2025-10-10T11:31:02.000000Z'
                            user_id:
                              type: string
                              example: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id:
                          type: string
                          example: 01k76y6zaxk79x0jjay70s2ecg
                        payable_type:
                          type: string
                          example: App\Models\Invoice
                        reference:
                          type: string
                          example: PBANK_1144
                        status:
                          type: string
                          example: paid
                        treasuryAccount:
                          type: object
                          properties:
                            accounting_account_code:
                              type: string
                              example: '52'
                            balance:
                              type: number
                              example: -1612810
                            company_id:
                              type: string
                              example: 01hqydxwtxdj3kmzp3bz7jk73g
                            created_at:
                              type: string
                              example: '2025-07-29T09:32:01.000000Z'
                            id:
                              type: string
                              example: 01k1amyq08htzkeg79xd7f9pct
                            label:
                              type: string
                              example: Bank
                            logoUrl:
                              nullable: true
                              example: null
                            medias:
                              type: array
                              items: {}
                              example: []
                            metadata:
                              type: object
                              properties:
                                currency_code:
                                  type: string
                                  example: XAF
                                currency_name:
                                  type: string
                                  example: FCFA
                                shop_id:
                                  type: string
                                  example: 01k1amypzhgs7fngfx1r9d37pn
                                shop_name:
                                  type: string
                                  example: Brekke Group
                            shop:
                              type: object
                              properties:
                                address:
                                  nullable: true
                                  example: null
                                company_id:
                                  type: string
                                  example: 01hqydxwtxdj3kmzp3bz7jk73g
                                created_at:
                                  type: string
                                  example: '2025-07-29T09:32:01.000000Z'
                                currency_code:
                                  type: string
                                  example: XAF
                                currency_name:
                                  type: string
                                  example: FCFA
                                deleted_at:
                                  nullable: true
                                  example: null
                                description:
                                  type: string
                                  example: >-
                                    Debitis non rerum aperiam tenetur placeat ut
                                    dignissimos.
                                domains:
                                  type: array
                                  items: {}
                                  example: []
                                id:
                                  type: string
                                  example: 01k1amypzhgs7fngfx1r9d37pn
                                logo:
                                  nullable: true
                                  example: null
                                logoUrl:
                                  type: string
                                  example: ''
                                metadata:
                                  nullable: true
                                  example: null
                                name:
                                  type: string
                                  example: Brekke Group
                                slug:
                                  type: string
                                  example: brekke-group
                                updated_at:
                                  type: string
                                  example: '2025-07-29T09:32:01.000000Z'
                                warehouses:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      company_id:
                                        type: string
                                        example: 01hqydxwtxdj3kmzp3bz7jk73g
                                      created_at:
                                        type: string
                                        example: '2025-07-29T09:32:01.000000Z'
                                      deleted_at:
                                        nullable: true
                                        example: null
                                      description:
                                        type: string
                                        example: >-
                                          Quasi magnam repudiandae non illum
                                          veniam autem ad alias.
                                      id:
                                        type: string
                                        example: 01k1amyq0feb1zj6qaw9v5zc5s
                                      metadata:
                                        nullable: true
                                        example: null
                                      name:
                                        type: string
                                        example: Bogan Inc Warehouse
                                      pivot:
                                        type: object
                                        properties:
                                          metadata:
                                            nullable: true
                                            example: null
                                          shop_id:
                                            type: string
                                            example: 01k1amypzhgs7fngfx1r9d37pn
                                          warehouse_id:
                                            type: string
                                            example: 01k1amyq0feb1zj6qaw9v5zc5s
                                      updated_at:
                                        type: string
                                        example: '2025-07-29T09:32:01.000000Z'
                                  example:
                                    - company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                                      created_at: '2025-07-29T09:32:01.000000Z'
                                      deleted_at: null
                                      description: >-
                                        Quasi magnam repudiandae non illum
                                        veniam autem ad alias.
                                      id: 01k1amyq0feb1zj6qaw9v5zc5s
                                      metadata: null
                                      name: Bogan Inc Warehouse
                                      pivot:
                                        metadata: null
                                        shop_id: 01k1amypzhgs7fngfx1r9d37pn
                                        warehouse_id: 01k1amyq0feb1zj6qaw9v5zc5s
                                      updated_at: '2025-07-29T09:32:01.000000Z'
                            shop_id:
                              type: string
                              example: 01k1amypzhgs7fngfx1r9d37pn
                            type:
                              type: string
                              example: bank
                            updated_at:
                              type: string
                              example: '2025-10-10T11:31:02.000000Z'
                        treasury_account_id:
                          type: string
                          example: 01k1amyq08htzkeg79xd7f9pct
                        type:
                          type: string
                          example: inbound
                        updated_at:
                          type: string
                          example: '2025-10-10T11:31:02.000000Z'
                        user_id:
                          type: string
                          example: 01k1amyqgjje8sknkzpm78qv6x
                    example:
                      - address_id: null
                        amount: 160
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-10-10T11:31:02.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-10-10T11:31:02.000000Z'
                        id: 01k76y6zcdw3b6whc9n9ebv5pr
                        metadata:
                          distributed_payment: true
                          order_id: 01k76xt7z87katy392s6w335cp
                        method: bank
                        paid_at: '2025-10-10T11:31:02.000000Z'
                        payable:
                          amount: 160
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-10-10T11:31:02.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k76y6zaxk79x0jjay70s2ecg
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k76xt7z87katy392s6w335cp
                          reference: '#INV_1128'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-10-10T11:31:02.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k76y6zaxk79x0jjay70s2ecg
                        payable_type: App\Models\Invoice
                        reference: PBANK_1144
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '52'
                          balance: -1612810
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          medias: []
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop:
                            address: null
                            company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                            created_at: '2025-07-29T09:32:01.000000Z'
                            currency_code: XAF
                            currency_name: FCFA
                            deleted_at: null
                            description: >-
                              Debitis non rerum aperiam tenetur placeat ut
                              dignissimos.
                            domains: []
                            id: 01k1amypzhgs7fngfx1r9d37pn
                            logo: null
                            logoUrl: ''
                            metadata: null
                            name: Brekke Group
                            slug: brekke-group
                            updated_at: '2025-07-29T09:32:01.000000Z'
                            warehouses:
                              - company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                                created_at: '2025-07-29T09:32:01.000000Z'
                                deleted_at: null
                                description: >-
                                  Quasi magnam repudiandae non illum veniam
                                  autem ad alias.
                                id: 01k1amyq0feb1zj6qaw9v5zc5s
                                metadata: null
                                name: Bogan Inc Warehouse
                                pivot:
                                  metadata: null
                                  shop_id: 01k1amypzhgs7fngfx1r9d37pn
                                  warehouse_id: 01k1amyq0feb1zj6qaw9v5zc5s
                                updated_at: '2025-07-29T09:32:01.000000Z'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-10T11:31:02.000000Z'
                        treasury_account_id: 01k1amyq08htzkeg79xd7f9pct
                        type: inbound
                        updated_at: '2025-10-10T11:31:02.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                  links:
                    type: object
                    properties:
                      first:
                        type: string
                        example: http://genuka-api.test/2023-11/admin/payments?page=1
                      last:
                        type: string
                        example: http://genuka-api.test/2023-11/admin/payments?page=1
                      next:
                        type: string
                        nullable: true
                        example: null
                      prev:
                        nullable: true
                        example: null
                  meta:
                    type: object
                    properties:
                      current_page:
                        type: number
                        example: 1
                      from:
                        type: number
                        example: 1
                      last_page:
                        type: number
                        example: 1
                      links:
                        type: array
                        items:
                          type: object
                          properties:
                            active:
                              type: boolean
                              example: false
                            label:
                              type: string
                              example: '&laquo; Previous'
                            page:
                              type: number
                              nullable: true
                              example: null
                            url:
                              type: string
                              nullable: true
                              example: null
                        example:
                          - active: false
                            label: '&laquo; Previous'
                            page: null
                            url: null
                          - active: true
                            label: '1'
                            page: 1
                            url: >-
                              http://genuka-api.test/2023-11/admin/payments?page=1
                          - active: false
                            label: Next &raquo;
                            page: null
                            url: null
                      path:
                        type: string
                        example: http://genuka-api.test/2023-11/admin/payments
                      per_page:
                        type: number
                        example: 10
                      to:
                        type: number
                        example: 1
                      total:
                        type: number
                        example: 1
              examples:
                '200':
                  value:
                    data:
                      - address_id: null
                        amount: 1000
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-07-30T10:06:00.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-07-30T08:05:53.000000Z'
                        id: 01k1d99nxjmmh089khftc88hqn
                        metadata:
                          distributed_payment: true
                          order_id: 01k1d99mheywy0tsdnftma8907
                        method: bank
                        paid_at: '2025-07-30T08:05:53.000000Z'
                        payable:
                          amount: 1000
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-30T10:06:00.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k1d99nwnewgq5rxfy05tcs13
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k1d99mheywy0tsdnftma8907
                          reference: '#INV_1001'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-07-30T10:06:00.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k1d99nwnewgq5rxfy05tcs13
                        payable_type: App\Models\Invoice
                        reference: PBANK_1001
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '52'
                          balance: -551433
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:00.000000Z'
                          id: 01k1amypp3pjw47pqemjv7jx31
                          label: Bank
                          logoUrl: null
                          medias: []
                          metadata:
                            connected_api: false
                            currency_code: XAF
                            currency_name: FCFA
                            notification: false
                          shop: null
                          shop_id: null
                          type: bank
                          updated_at: '2025-10-03T09:57:44.000000Z'
                        treasury_account:
                          accounting_account_code: '52'
                          balance: -551433
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:00.000000Z'
                          id: 01k1amypp3pjw47pqemjv7jx31
                          label: Bank
                          logoUrl: null
                          metadata:
                            connected_api: false
                            currency_code: XAF
                            currency_name: FCFA
                            notification: false
                          shop_id: null
                          type: bank
                          updated_at: '2025-10-03T09:57:44.000000Z'
                        treasury_account_id: 01k1amypp3pjw47pqemjv7jx31
                        type: inbound
                        updated_at: '2025-07-30T10:06:00.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                      - address_id: null
                        amount: 30000
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-08-05T11:32:55.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-08-05T08:12:28.000000Z'
                        id: 01k1wwn4135dfev08xt8pr332m
                        metadata: null
                        method: 01k1amyq08htzkeg79xd7f9pct
                        paid_at: '2025-08-05T11:32:55.000000Z'
                        payable:
                          amount: 30000
                          billing:
                            address_id: 01k1ww52vtb3kcxf8xvt6j4hzh
                            method: 01k1amyq08htzkeg79xd7f9pct
                            status: paid
                            subtotal: 30000
                            total: 30000
                            treasury_account_id: 01k1amyq08htzkeg79xd7f9pct
                            treasury_account_label: Bank
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-08-05T08:12:28.000000Z'
                          credit_code: '602'
                          currency: XAF
                          debit_code: '401'
                          deleted_at: null
                          due_date: '2025-08-05T08:12:28.000000Z'
                          expense_type: RAW_MATERIALS
                          id: 01k1wwkga2hj0z065wqmnb47be
                          items: null
                          medias: []
                          metadata:
                            matchingMediaIds: []
                            note: null
                          paid_at: null
                          reference: '#BILL_1226'
                          shipping: null
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          source: DASHBOARD
                          state: 1
                          status: pending
                          supplier_id: null
                          updated_at: '2025-08-05T11:32:55.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k1wwkga2hj0z065wqmnb47be
                        payable_type: App\Models\Bill
                        reference: PBANK_1002
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          medias: []
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop:
                            address: null
                            company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                            created_at: '2025-07-29T09:32:01.000000Z'
                            currency_code: XAF
                            currency_name: FCFA
                            deleted_at: null
                            description: >-
                              Debitis non rerum aperiam tenetur placeat ut
                              dignissimos.
                            domains: []
                            id: 01k1amypzhgs7fngfx1r9d37pn
                            logo: null
                            logoUrl: ''
                            metadata: null
                            name: Brekke Group
                            slug: brekke-group
                            updated_at: '2025-07-29T09:32:01.000000Z'
                            warehouses:
                              - company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                                created_at: '2025-07-29T09:32:01.000000Z'
                                deleted_at: null
                                description: >-
                                  Quasi magnam repudiandae non illum veniam
                                  autem ad alias.
                                id: 01k1amyq0feb1zj6qaw9v5zc5s
                                metadata: null
                                name: Bogan Inc Warehouse
                                pivot:
                                  metadata: null
                                  shop_id: 01k1amypzhgs7fngfx1r9d37pn
                                  warehouse_id: 01k1amyq0feb1zj6qaw9v5zc5s
                                updated_at: '2025-07-29T09:32:01.000000Z'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account_id: 01k1amyq08htzkeg79xd7f9pct
                        type: inbound
                        updated_at: '2025-08-05T11:32:55.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                      - address_id: null
                        amount: 1400
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-08-11T09:30:41.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-08-11T09:30:41.000000Z'
                        id: 01k2c7fg1wg4d30w26ysyy04sc
                        metadata:
                          distributed_payment: true
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                        method: bank
                        paid_at: '2025-08-11T09:30:41.000000Z'
                        payable:
                          amount: 1400
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-08-11T09:30:41.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k2c7fg157e1hnag3avd6rgg7
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                          reference: '#INV_1003'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-08-11T09:30:41.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k2c7fg157e1hnag3avd6rgg7
                        payable_type: App\Models\Invoice
                        reference: PBANK_1003
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          media: []
                          medias: []
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop:
                            address: null
                            company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                            created_at: '2025-07-29T09:32:01.000000Z'
                            currency_code: XAF
                            currency_name: FCFA
                            deleted_at: null
                            description: >-
                              Debitis non rerum aperiam tenetur placeat ut
                              dignissimos.
                            domains: []
                            id: 01k1amypzhgs7fngfx1r9d37pn
                            logo: null
                            logoUrl: ''
                            media: []
                            metadata: null
                            name: Brekke Group
                            slug: brekke-group
                            updated_at: '2025-07-29T09:32:01.000000Z'
                            warehouses:
                              - company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                                created_at: '2025-07-29T09:32:01.000000Z'
                                deleted_at: null
                                description: >-
                                  Quasi magnam repudiandae non illum veniam
                                  autem ad alias.
                                id: 01k1amyq0feb1zj6qaw9v5zc5s
                                metadata: null
                                name: Bogan Inc Warehouse
                                pivot:
                                  metadata: null
                                  shop_id: 01k1amypzhgs7fngfx1r9d37pn
                                  warehouse_id: 01k1amyq0feb1zj6qaw9v5zc5s
                                updated_at: '2025-07-29T09:32:01.000000Z'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account_id: 01k1amyq08htzkeg79xd7f9pct
                        type: inbound
                        updated_at: '2025-08-11T09:30:41.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                      - address_id: null
                        amount: 500
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-08-11T09:33:40.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-08-11T09:33:40.000000Z'
                        id: 01k2c7myt4ejr6411z4zwf87j4
                        metadata:
                          distributed_payment: true
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                        method: bank
                        paid_at: '2025-08-11T09:33:40.000000Z'
                        payable:
                          amount: 500
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-08-11T09:33:40.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k2c7mysjvzjsm1zfe6hrcgq6
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                          reference: '#INV_1004'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-08-11T09:33:40.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k2c7mysjvzjsm1zfe6hrcgq6
                        payable_type: App\Models\Invoice
                        reference: PBANK_1004
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          media: []
                          medias: []
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop:
                            address: null
                            company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                            created_at: '2025-07-29T09:32:01.000000Z'
                            currency_code: XAF
                            currency_name: FCFA
                            deleted_at: null
                            description: >-
                              Debitis non rerum aperiam tenetur placeat ut
                              dignissimos.
                            domains: []
                            id: 01k1amypzhgs7fngfx1r9d37pn
                            logo: null
                            logoUrl: ''
                            media: []
                            metadata: null
                            name: Brekke Group
                            slug: brekke-group
                            updated_at: '2025-07-29T09:32:01.000000Z'
                            warehouses:
                              - company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                                created_at: '2025-07-29T09:32:01.000000Z'
                                deleted_at: null
                                description: >-
                                  Quasi magnam repudiandae non illum veniam
                                  autem ad alias.
                                id: 01k1amyq0feb1zj6qaw9v5zc5s
                                metadata: null
                                name: Bogan Inc Warehouse
                                pivot:
                                  metadata: null
                                  shop_id: 01k1amypzhgs7fngfx1r9d37pn
                                  warehouse_id: 01k1amyq0feb1zj6qaw9v5zc5s
                                updated_at: '2025-07-29T09:32:01.000000Z'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account_id: 01k1amyq08htzkeg79xd7f9pct
                        type: inbound
                        updated_at: '2025-08-11T09:33:40.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                      - address_id: null
                        amount: 500
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-08-11T09:42:16.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-08-11T09:42:16.000000Z'
                        id: 01k2c84pzgr95eweczbhx9dajh
                        metadata:
                          distributed_payment: true
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                        method: pawapay
                        paid_at: '2025-08-11T09:42:16.000000Z'
                        payable:
                          amount: 500
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-08-11T09:42:16.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k2c84pyvw92gbvetej5mpkg5
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                          reference: '#INV_1005'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-08-11T09:42:16.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k2c84pyvw92gbvetej5mpkg5
                        payable_type: App\Models\Invoice
                        reference: PPAWA_1005
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '538'
                          balance: 37934
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-30T09:58:30.000000Z'
                          id: 01k1d8vxr0xdthhtb6zy1e97dt
                          label: PawaPay
                          logoUrl: null
                          medias: []
                          metadata:
                            connected_api: true
                            currency_code: XAF
                            currency_name: FCFA
                            notification: true
                          shop: null
                          shop_id: null
                          type: pawapay
                          updated_at: '2025-10-03T10:35:13.000000Z'
                        treasury_account:
                          accounting_account_code: '538'
                          balance: 37934
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-30T09:58:30.000000Z'
                          id: 01k1d8vxr0xdthhtb6zy1e97dt
                          label: PawaPay
                          logoUrl: null
                          metadata:
                            connected_api: true
                            currency_code: XAF
                            currency_name: FCFA
                            notification: true
                          shop_id: null
                          type: pawapay
                          updated_at: '2025-10-03T10:35:13.000000Z'
                        treasury_account_id: 01k1d8vxr0xdthhtb6zy1e97dt
                        type: inbound
                        updated_at: '2025-08-11T09:42:16.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                      - address_id: null
                        amount: 1000
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-08-11T09:51:24.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-08-11T09:51:24.000000Z'
                        id: 01k2c8ndrke2fy9zhatybh6hz7
                        metadata:
                          distributed_payment: true
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                        method: pawapay
                        paid_at: '2025-08-11T09:51:24.000000Z'
                        payable:
                          amount: 1000
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-08-11T09:51:24.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k2c8ndr1shnpp4pz3d57azv1
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                          reference: '#INV_1006'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-08-11T09:51:24.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k2c8ndr1shnpp4pz3d57azv1
                        payable_type: App\Models\Invoice
                        reference: PPAWA_1006
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '538'
                          balance: 37934
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-30T09:58:30.000000Z'
                          id: 01k1d8vxr0xdthhtb6zy1e97dt
                          label: PawaPay
                          logoUrl: null
                          media: []
                          medias: []
                          metadata:
                            connected_api: true
                            currency_code: XAF
                            currency_name: FCFA
                            notification: true
                          shop: null
                          shop_id: null
                          type: pawapay
                          updated_at: '2025-10-03T10:35:13.000000Z'
                        treasury_account:
                          accounting_account_code: '538'
                          balance: 37934
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-30T09:58:30.000000Z'
                          id: 01k1d8vxr0xdthhtb6zy1e97dt
                          label: PawaPay
                          logoUrl: null
                          metadata:
                            connected_api: true
                            currency_code: XAF
                            currency_name: FCFA
                            notification: true
                          shop_id: null
                          type: pawapay
                          updated_at: '2025-10-03T10:35:13.000000Z'
                        treasury_account_id: 01k1d8vxr0xdthhtb6zy1e97dt
                        type: inbound
                        updated_at: '2025-08-11T09:51:24.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                      - address_id: null
                        amount: 1000
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-08-11T10:00:22.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-08-11T10:00:22.000000Z'
                        id: 01k2c95vn237mspwbhtkqb9yz4
                        metadata:
                          distributed_payment: true
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                        method: bank
                        paid_at: '2025-08-11T10:00:22.000000Z'
                        payable:
                          amount: 1000
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-08-11T10:00:22.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k2c95vmfxspv32yh5mvmht81
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                          reference: '#INV_1007'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-08-11T10:00:22.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k2c95vmfxspv32yh5mvmht81
                        payable_type: App\Models\Invoice
                        reference: PBANK_1007
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          media: []
                          medias: []
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop:
                            address: null
                            company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                            created_at: '2025-07-29T09:32:01.000000Z'
                            currency_code: XAF
                            currency_name: FCFA
                            deleted_at: null
                            description: >-
                              Debitis non rerum aperiam tenetur placeat ut
                              dignissimos.
                            domains: []
                            id: 01k1amypzhgs7fngfx1r9d37pn
                            logo: null
                            logoUrl: ''
                            media: []
                            metadata: null
                            name: Brekke Group
                            slug: brekke-group
                            updated_at: '2025-07-29T09:32:01.000000Z'
                            warehouses:
                              - company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                                created_at: '2025-07-29T09:32:01.000000Z'
                                deleted_at: null
                                description: >-
                                  Quasi magnam repudiandae non illum veniam
                                  autem ad alias.
                                id: 01k1amyq0feb1zj6qaw9v5zc5s
                                metadata: null
                                name: Bogan Inc Warehouse
                                pivot:
                                  metadata: null
                                  shop_id: 01k1amypzhgs7fngfx1r9d37pn
                                  warehouse_id: 01k1amyq0feb1zj6qaw9v5zc5s
                                updated_at: '2025-07-29T09:32:01.000000Z'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account_id: 01k1amyq08htzkeg79xd7f9pct
                        type: inbound
                        updated_at: '2025-08-11T10:00:22.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                      - address_id: null
                        amount: 12000
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-08-11T10:01:14.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-08-11T10:01:14.000000Z'
                        id: 01k2c97e94p300ys8zr48a4f00
                        metadata:
                          distributed_payment: true
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                        method: pawapay
                        paid_at: '2025-08-11T10:01:14.000000Z'
                        payable:
                          amount: 12000
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-08-11T10:01:14.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k2c97e7n5mty8ap7p5sqc5n4
                          is_deposit: false
                          is_final: true
                          medias: []
                          metadata: null
                          order_id: 01k2c6jqpyh6j27b1ksmfqyy79
                          reference: '#INV_1008'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-08-11T10:01:14.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k2c97e7n5mty8ap7p5sqc5n4
                        payable_type: App\Models\Invoice
                        reference: PPAWA_1008
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '538'
                          balance: 37934
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-30T09:58:30.000000Z'
                          id: 01k1d8vxr0xdthhtb6zy1e97dt
                          label: PawaPay
                          logoUrl: null
                          media: []
                          medias: []
                          metadata:
                            connected_api: true
                            currency_code: XAF
                            currency_name: FCFA
                            notification: true
                          shop: null
                          shop_id: null
                          type: pawapay
                          updated_at: '2025-10-03T10:35:13.000000Z'
                        treasury_account:
                          accounting_account_code: '538'
                          balance: 37934
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-30T09:58:30.000000Z'
                          id: 01k1d8vxr0xdthhtb6zy1e97dt
                          label: PawaPay
                          logoUrl: null
                          metadata:
                            connected_api: true
                            currency_code: XAF
                            currency_name: FCFA
                            notification: true
                          shop_id: null
                          type: pawapay
                          updated_at: '2025-10-03T10:35:13.000000Z'
                        treasury_account_id: 01k1d8vxr0xdthhtb6zy1e97dt
                        type: inbound
                        updated_at: '2025-08-11T10:01:14.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                      - address_id: null
                        amount: 1000
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-08-11T10:19:55.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-08-11T10:19:55.000000Z'
                        id: 01k2ca9mwwqca9scmdkbe6z320
                        metadata:
                          distributed_payment: true
                          order_id: 01k2ca401bqvggy081d8jax7tn
                        method: pawapay
                        paid_at: '2025-08-11T10:19:55.000000Z'
                        payable:
                          amount: 1000
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-08-11T10:19:55.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k2ca9mwbwy9v66rat80q4173
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k2ca401bqvggy081d8jax7tn
                          reference: '#INV_1009'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-08-11T10:19:55.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k2ca9mwbwy9v66rat80q4173
                        payable_type: App\Models\Invoice
                        reference: PPAWA_1009
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '538'
                          balance: 37934
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-30T09:58:30.000000Z'
                          id: 01k1d8vxr0xdthhtb6zy1e97dt
                          label: PawaPay
                          logoUrl: null
                          media: []
                          medias: []
                          metadata:
                            connected_api: true
                            currency_code: XAF
                            currency_name: FCFA
                            notification: true
                          shop: null
                          shop_id: null
                          type: pawapay
                          updated_at: '2025-10-03T10:35:13.000000Z'
                        treasury_account:
                          accounting_account_code: '538'
                          balance: 37934
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-30T09:58:30.000000Z'
                          id: 01k1d8vxr0xdthhtb6zy1e97dt
                          label: PawaPay
                          logoUrl: null
                          metadata:
                            connected_api: true
                            currency_code: XAF
                            currency_name: FCFA
                            notification: true
                          shop_id: null
                          type: pawapay
                          updated_at: '2025-10-03T10:35:13.000000Z'
                        treasury_account_id: 01k1d8vxr0xdthhtb6zy1e97dt
                        type: inbound
                        updated_at: '2025-08-11T10:19:55.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                      - address_id: null
                        amount: 300
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-08-11T10:20:58.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-08-11T10:20:58.000000Z'
                        id: 01k2cabj1cwn721p7tft6tmj14
                        metadata:
                          distributed_payment: true
                          order_id: 01k2ca401bqvggy081d8jax7tn
                        method: bank
                        paid_at: '2025-08-11T10:20:58.000000Z'
                        payable:
                          amount: 300
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-08-11T10:20:58.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k2cabj0pk1jb98v7rsbngbcp
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k2ca401bqvggy081d8jax7tn
                          reference: '#INV_1010'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-08-11T10:20:58.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k2cabj0pk1jb98v7rsbngbcp
                        payable_type: App\Models\Invoice
                        reference: PBANK_1010
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          media: []
                          medias: []
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop:
                            address: null
                            company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                            created_at: '2025-07-29T09:32:01.000000Z'
                            currency_code: XAF
                            currency_name: FCFA
                            deleted_at: null
                            description: >-
                              Debitis non rerum aperiam tenetur placeat ut
                              dignissimos.
                            domains: []
                            id: 01k1amypzhgs7fngfx1r9d37pn
                            logo: null
                            logoUrl: ''
                            media: []
                            metadata: null
                            name: Brekke Group
                            slug: brekke-group
                            updated_at: '2025-07-29T09:32:01.000000Z'
                            warehouses:
                              - company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                                created_at: '2025-07-29T09:32:01.000000Z'
                                deleted_at: null
                                description: >-
                                  Quasi magnam repudiandae non illum veniam
                                  autem ad alias.
                                id: 01k1amyq0feb1zj6qaw9v5zc5s
                                metadata: null
                                name: Bogan Inc Warehouse
                                pivot:
                                  metadata: null
                                  shop_id: 01k1amypzhgs7fngfx1r9d37pn
                                  warehouse_id: 01k1amyq0feb1zj6qaw9v5zc5s
                                updated_at: '2025-07-29T09:32:01.000000Z'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account:
                          accounting_account_code: '52'
                          balance: -1613130
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-03T07:40:34.000000Z'
                        treasury_account_id: 01k1amyq08htzkeg79xd7f9pct
                        type: inbound
                        updated_at: '2025-08-11T10:20:58.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                    links:
                      first: http://genuka-api.test/2023-11/admin/payments?page=1
                      last: http://genuka-api.test/2023-11/admin/payments?page=15
                      next: http://genuka-api.test/2023-11/admin/payments?page=2
                      prev: null
                    meta:
                      current_page: 1
                      from: 1
                      last_page: 15
                      links:
                        - active: false
                          label: '&laquo; Previous'
                          page: null
                          url: null
                        - active: true
                          label: '1'
                          page: 1
                          url: http://genuka-api.test/2023-11/admin/payments?page=1
                        - active: false
                          label: '2'
                          page: 2
                          url: http://genuka-api.test/2023-11/admin/payments?page=2
                        - active: false
                          label: '3'
                          page: 3
                          url: http://genuka-api.test/2023-11/admin/payments?page=3
                        - active: false
                          label: '4'
                          page: 4
                          url: http://genuka-api.test/2023-11/admin/payments?page=4
                        - active: false
                          label: '5'
                          page: 5
                          url: http://genuka-api.test/2023-11/admin/payments?page=5
                        - active: false
                          label: '6'
                          page: 6
                          url: http://genuka-api.test/2023-11/admin/payments?page=6
                        - active: false
                          label: '7'
                          page: 7
                          url: http://genuka-api.test/2023-11/admin/payments?page=7
                        - active: false
                          label: '8'
                          page: 8
                          url: http://genuka-api.test/2023-11/admin/payments?page=8
                        - active: false
                          label: '9'
                          page: 9
                          url: http://genuka-api.test/2023-11/admin/payments?page=9
                        - active: false
                          label: '10'
                          page: 10
                          url: >-
                            http://genuka-api.test/2023-11/admin/payments?page=10
                        - active: false
                          label: ...
                          url: null
                        - active: false
                          label: '14'
                          page: 14
                          url: >-
                            http://genuka-api.test/2023-11/admin/payments?page=14
                        - active: false
                          label: '15'
                          page: 15
                          url: >-
                            http://genuka-api.test/2023-11/admin/payments?page=15
                        - active: false
                          label: Next &raquo;
                          page: 2
                          url: http://genuka-api.test/2023-11/admin/payments?page=2
                      path: http://genuka-api.test/2023-11/admin/payments
                      per_page: 10
                      to: 10
                      total: 142
                200 OK:
                  value:
                    data:
                      - address_id: null
                        amount: 160
                        company:
                          company_code: null
                          created_at: '2025-07-29T09:31:59.000000Z'
                          currency_code: XAF
                          currency_name: FCFA
                          description: null
                          handle: demo-company
                          id: 01hqydxwtxdj3kmzp3bz7jk73g
                          logoUrl: null
                          metadata:
                            payment_terms:
                              accepted_at: '2025-07-30T08:57:08.517Z'
                              accepted_by: 'Payton Donnelly '
                          name: Demo Company
                          type: business
                          updated_at: '2025-07-30T09:57:08.000000Z'
                        company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                        created_at: '2025-10-10T11:31:02.000000Z'
                        currency_code: XAF
                        deleted_at: null
                        due_date: '2025-10-10T11:31:02.000000Z'
                        id: 01k76y6zcdw3b6whc9n9ebv5pr
                        metadata:
                          distributed_payment: true
                          order_id: 01k76xt7z87katy392s6w335cp
                        method: bank
                        paid_at: '2025-10-10T11:31:02.000000Z'
                        payable:
                          amount: 160
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-10-10T11:31:02.000000Z'
                          currency_code: XAF
                          deleted_at: null
                          id: 01k76y6zaxk79x0jjay70s2ecg
                          is_deposit: true
                          is_final: false
                          medias: []
                          metadata: null
                          order_id: 01k76xt7z87katy392s6w335cp
                          reference: '#INV_1128'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          status: paid
                          updated_at: '2025-10-10T11:31:02.000000Z'
                          user_id: 01k1amyqgjje8sknkzpm78qv6x
                        payable_id: 01k76y6zaxk79x0jjay70s2ecg
                        payable_type: App\Models\Invoice
                        reference: PBANK_1144
                        status: paid
                        treasuryAccount:
                          accounting_account_code: '52'
                          balance: -1612810
                          company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                          created_at: '2025-07-29T09:32:01.000000Z'
                          id: 01k1amyq08htzkeg79xd7f9pct
                          label: Bank
                          logoUrl: null
                          medias: []
                          metadata:
                            currency_code: XAF
                            currency_name: FCFA
                            shop_id: 01k1amypzhgs7fngfx1r9d37pn
                            shop_name: Brekke Group
                          shop:
                            address: null
                            company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                            created_at: '2025-07-29T09:32:01.000000Z'
                            currency_code: XAF
                            currency_name: FCFA
                            deleted_at: null
                            description: >-
                              Debitis non rerum aperiam tenetur placeat ut
                              dignissimos.
                            domains: []
                            id: 01k1amypzhgs7fngfx1r9d37pn
                            logo: null
                            logoUrl: ''
                            metadata: null
                            name: Brekke Group
                            slug: brekke-group
                            updated_at: '2025-07-29T09:32:01.000000Z'
                            warehouses:
                              - company_id: 01hqydxwtxdj3kmzp3bz7jk73g
                                created_at: '2025-07-29T09:32:01.000000Z'
                                deleted_at: null
                                description: >-
                                  Quasi magnam repudiandae non illum veniam
                                  autem ad alias.
                                id: 01k1amyq0feb1zj6qaw9v5zc5s
                                metadata: null
                                name: Bogan Inc Warehouse
                                pivot:
                                  metadata: null
                                  shop_id: 01k1amypzhgs7fngfx1r9d37pn
                                  warehouse_id: 01k1amyq0feb1zj6qaw9v5zc5s
                                updated_at: '2025-07-29T09:32:01.000000Z'
                          shop_id: 01k1amypzhgs7fngfx1r9d37pn
                          type: bank
                          updated_at: '2025-10-10T11:31:02.000000Z'
                        treasury_account_id: 01k1amyq08htzkeg79xd7f9pct
                        type: inbound
                        updated_at: '2025-10-10T11:31:02.000000Z'
                        user_id: 01k1amyqgjje8sknkzpm78qv6x
                    links:
                      first: http://genuka-api.test/2023-11/admin/payments?page=1
                      last: http://genuka-api.test/2023-11/admin/payments?page=1
                      next: null
                      prev: null
                    meta:
                      current_page: 1
                      from: 1
                      last_page: 1
                      links:
                        - active: false
                          label: '&laquo; Previous'
                          page: null
                          url: null
                        - active: true
                          label: '1'
                          page: 1
                          url: http://genuka-api.test/2023-11/admin/payments?page=1
                        - active: false
                          label: Next &raquo;
                          page: null
                          url: null
                      path: http://genuka-api.test/2023-11/admin/payments
                      per_page: 10
                      to: 1
                      total: 1
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````