# Update Split Settlement Account

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/split-account/{splitAccountDetailId}:
    patch:
      summary: Update Split Settlement Account
      deprecated: false
      description: >-

        :::highlight purple 📌

        Use this API to update the details of an existing split settlement
        account. This allows you to modify account information for your vendors,
        partners, or internal entities that receive split payments.

        :::
      tags:
        - Payment Gateway/APIs - Payment Gateway /Split Settlement
      parameters:
        - name: splitAccountDetailId
          in: path
          description: ''
          required: true
          schema:
            type: string
        - name: Authorization
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: merchantAccessKey
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SplitAccountUpdateRequest'
            examples: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SplitAccountResponse'
          headers: {}
          x-apidog-name: Success
      security: []
      x-apidog-folder: Payment Gateway/APIs - Payment Gateway /Split Settlement
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-11766755-run
components:
  schemas:
    SplitAccountUpdateRequest:
      type: object
      properties:
        accessKey:
          type: string
        name:
          type: string
        email:
          type: string
        phone:
          type: string
        settlementCycle:
          type: string
          enum:
            - T0
            - T1
            - T2
          x-apidog-enum:
            - value: T0
              name: ''
              description: ''
            - value: T1
              name: ''
              description: ''
            - value: T2
              name: ''
              description: ''
        settlementSchedule:
          type: string
        dashboardAccess:
          type: boolean
        pan:
          type: string
        gstin:
          type: string
        accountNumber:
          type: string
        ifsc:
          type: string
        label:
          type: string
      x-apidog-orders:
        - accessKey
        - name
        - email
        - phone
        - settlementCycle
        - settlementSchedule
        - dashboardAccess
        - pan
        - gstin
        - accountNumber
        - ifsc
        - label
      required:
        - accessKey
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    SplitAccountResponse:
      type: object
      properties:
        splitAccountDetailId:
          type: string
        accessKey:
          type: string
        name:
          type: string
        email:
          type: string
        phone:
          type: string
        dashboardAccess:
          type: boolean
        pan:
          type: string
        gstin:
          type: string
        accountNumber:
          type: string
        ifsc:
          type: string
        beneficiaryCode:
          type: string
        approved:
          type: string
        approvedOn:
          type: string
        createdOn:
          type: string
        label:
          type: string
      x-apidog-orders:
        - splitAccountDetailId
        - accessKey
        - name
        - email
        - phone
        - dashboardAccess
        - pan
        - gstin
        - accountNumber
        - ifsc
        - beneficiaryCode
        - approved
        - approvedOn
        - createdOn
        - label
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
