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

# Update Settlement Beneficiary

Update a saved settlement beneficiary by ID.


## OpenAPI

````yaml PATCH /api/v3/integrator/settlement-config/beneficiaries/{beneficiaryId}
openapi: 3.0.0
info:
  title: KOTANI PAY API PLATFORM
  description: ''
  version: '3.0'
  contact: {}
servers:
  - url: https://sandbox-api.kotanipay.io
    description: Sandbox
security: []
tags: []
paths:
  /api/v3/integrator/settlement-config/beneficiaries/{beneficiaryId}:
    patch:
      tags:
        - INTEGRATOR
      operationId: IntegratorController_updateMySavedBeneficiary_api/v3
      parameters:
        - name: beneficiaryId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SavedBeneficiaryDto'
      responses:
        '200':
          description: ''
      security:
        - JWT: []
components:
  schemas:
    SavedBeneficiaryDto:
      type: object
      properties:
        nickname:
          type: string
          description: Human-readable label for this beneficiary
        isDefault:
          type: boolean
          description: Whether this is the default beneficiary
        beneficiaryType:
          type: string
          enum:
            - bank
            - crypto
          description: bank or crypto — determines which fields apply
        accountName:
          type: string
          description: Name on the bank account
        accountNumber:
          type: string
          description: Bank account number
        bankName:
          type: string
          description: Bank name (e.g. Equity Bank)
        bankCode:
          type: string
          description: Bank code / sort code (optional)
        walletAddress:
          type: string
          description: Crypto wallet address
        chain:
          type: string
          description: Blockchain chain (e.g. Polygon, Tron, BSC)
        token:
          type: string
          description: Token/asset symbol on the chain (e.g. USDT, USDC)
        name:
          type: string
          description: Full name of the beneficiary (display)
        accountType:
          type: string
          description: 'Account type: Exchange / Non-Custodial / Bank (legacy)'
        network:
          type: string
          description: Network sub-type (legacy — prefer token field for asset)
  securitySchemes:
    JWT:
      scheme: bearer
      bearerFormat: JWT
      type: http

````