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

# List of disburses



## OpenAPI

````yaml get /disburses
openapi: 3.1.0
info:
  title: ALAL APIs
  version: 1.0.0
servers:
  - url: https://api.sandbox.saalal.com/v1
security: []
tags:
  - name: Cards
  - name: Transactions
  - name: CardUsers
  - name: Disputes
paths:
  /disburses:
    get:
      tags:
        - Disburse
      summary: List of disburses
      parameters:
        - name: Accept
          in: header
          schema:
            type: string
          example: application/json
        - name: page
          in: query
          schema:
            type: integer
          example: '1'
        - name: per_page
          in: query
          schema:
            type: integer
          example: '20'
      responses:
        '200':
          description: OK
          headers:
            Host:
              schema:
                type: string
                example: localhost:8090
            Date:
              schema:
                type: string
                example: Thu, 22 Jun 2023 10:34:03 GMT
            Connection:
              schema:
                type: string
                example: close
            X-Powered-By:
              schema:
                type: string
                example: PHP/8.2.4
            Cache-Control:
              schema:
                type: string
                example: no-cache, private
            Content-Type:
              schema:
                type: string
                example: application/json
            X-RateLimit-Limit:
              schema:
                type: integer
                example: '60'
            X-RateLimit-Remaining:
              schema:
                type: integer
                example: '59'
            Access-Control-Allow-Origin:
              schema:
                type: string
                example: '*'
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: disburse list
                  statusCode:
                    type: integer
                    example: 200
                  data:
                    type: array
                    items:
                      type: object
                      xml:
                        name: item
                      properties:
                        business:
                          type: string
                          example: BUSINESS_NAME
                        customer:
                          type: object
                          properties:
                            full_name:
                              type: string
                              example: John Doe
                            email:
                              type: string
                              example: john@doe.com
                            phone:
                              type: string
                              example: 77XXXXXXX
                            bank_id:
                              type: string
                              example: XX08XX0100163110648500003035
                            bank_name:
                              enum:
                                - BICICI
                                - NSIA_BANQUE_CI
                                - SIB
                                - SOCIETE_GENERALE_CI
                                - CITIBANK_CI
                                - BOA_CI
                                - BACI
                                - ECOBANK_CI
                                - BHCI
                                - BNI
                                - STANDARD_CHARTERED_BANK_CI
                                - AFRILAND_FIRST_BANK_CI
                                - VERSUS_BANK_CI
                                - ORABANK_CI
                                - BBG_CI
                                - UBA_CI
                                - BSIC_CI
                                - BGFIBANK_CI
                                - BANQUE_POPULAIRE
                                - GTBANK_CI
                                - CBI_CI
                                - BDU_CI
                                - STANBIC_BANK_CI
                                - BDA
                                - MANSA_BANK_CI
                                - ORANGE_BANK_CI
                                - AFG_BANK_CI
                              example: YOUR_BANK_NAME
                            bank_account_name:
                              type: string
                              example: YOUR_BANK_ACCOUNT_NAME
                        slug:
                          type: string
                          example: d282e4a6-1fb6-4827-a6ae-a780263287d7
                        reference:
                          type: string
                          example: d282e4a6-1fb6-4827-a6ae-a780263287d7
                        kind:
                          type: string
                          example: disburse
                        network:
                          type: string
                          example: wave-sn
                        amount:
                          type: integer
                          example: 1500
                        status:
                          type: string
                          example: processing
                        expired_at:
                          type: string
                          example: '2024-01-11T00:00:00.000Z'
                        meta:
                          type: array
                  meta:
                    type: object
                    properties:
                      current_page:
                        type: integer
                        example: 1
                      from:
                        type: integer
                        example: 1
                      last_page:
                        type: integer
                        example: 1
                      per_page:
                        type: integer
                        example: 20
                      to:
                        type: integer
                        example: 17
                      total:
                        type: integer
                        example: 17
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````