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

# Create a disburse



## OpenAPI

````yaml post /disburses/create
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/create:
    post:
      tags:
        - Disburse
      summary: Create a disburse
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                amount:
                  type: integer
                  example: '500'
                network:
                  type: string
                  enum:
                    - orange-money-sn
                    - wave-sn
                    - orange-money-ci
                    - wave-ci
                    - mtn-ci
                    - moov-ci
                    - mtn-bj
                    - moov-bj
                    - moov-tg
                    - t-money-togo
                    - bank
                partner_reference:
                  type: string
                  example: XXX-XXXXXX-XXXX
                customer:
                  type: object
                  properties:
                    full_name:
                      type: string
                      example: John Doe
                    email:
                      type: string
                      example: john.doe@example.com
                    phone:
                      type: string
                      example: 77XXXXXXX
                    partner_reference:
                      type: string
                      example: XXX-XXXXXX-XXXX
                    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: YOU_BANK_ACCOUNT_NAME
              example:
                amount: 500
                network: orange-money-sn
                customer:
                  full_name: Johny Doe
                  email: john@doe.com
                  phone: 77XXXXXXX
                  bank_name: YOUR_BANK_NAME
                  bank_id: XX08XX0100163110648500003035
                  bank_account_name: YOUR_BANK_ACCOUNT_NAME
      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
                  statusCode:
                    type: integer
                    example: 200
                  disburse:
                    type: object
                    properties:
                      business:
                        type: string
                      customer:
                        type: object
                        properties:
                          full_name:
                            type: string
                          email:
                            type: string
                          phone:
                            type: string
                          bank_id:
                            type: string
                          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
                          bank_account_name:
                            type: string
                      slug:
                        type: string
                      reference:
                        type: string
                      kind:
                        type: string
                      network:
                        type: string
                      amount:
                        type: integer
                      status:
                        type: string
                      expired_at:
                        type: string
                      meta:
                        type: string
              example:
                message: disburse initiated!
                statusCode: 200
                data:
                  disburse:
                    business: BUSINESS_NAME
                    customer:
                      full_name: Johny Doe
                      email: john@doe.com
                      phone: 77XXXXXXX
                      bank_name: YOUR_BANK_NAME
                      bank_id: XX08XX0100163110648500003035
                      bank_account_name: YOUR_BANK_ACCOUNT_NAME
                    slug: d282e4a6-1fb6-4827-a6ae-a780263287d7
                    reference: d282e4a6-1fb6-4827-a6ae-a780263287d7
                    kind: disburse
                    network: bank | orange-money-sn | wave-sn
                    partner_reference: XXX-XXXXXX-XXXX
                    amount: 500
                    status: processing
                    expired_at: '2024-01-11T00:00:00.000Z'
                    meta:
                      wallet_url: https://extra.url.com
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````