# Get All Split Settlement Account

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/split-account:
    get:
      summary: Get All Split Settlement Account
      deprecated: false
      description: >-

        :::highlight purple 📌

        Use this API to retrieve a list of all split settlement accounts you’ve
        created. This helps you manage, review, and audit accounts configured to
        receive split payouts.

        :::
      operationId: getSettlementPayoutById
      tags:
        - Payment Gateway/APIs - Payment Gateway /Split Settlement
      parameters:
        - name: authorization
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: merchantAccessKey
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  payload:
                    type: array
                    items:
                      $ref: '#/components/schemas/SplitAccountResponse'
                  response_code:
                    type: integer
                    format: int32
                  response_message:
                    type: string
                x-apidog-orders:
                  - payload
                  - response_code
                  - response_message
                x-apidog-refs: {}
                x--orders:
                  - payload
                  - response_code
                  - response_message
                x--ignore-properties: []
          headers: {}
          x-apidog-name: OK
      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-11766241-run
components:
  schemas:
    SplitAccountResponse:
      type: object
      properties:
        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
        splitAccountDetailId:
          type: string
        label:
          type: string
      x-apidog-orders:
        - splitAccountDetailId
        - accessKey
        - name
        - email
        - phone
        - dashboardAccess
        - pan
        - gstin
        - accountNumber
        - ifsc
        - beneficiaryCode
        - approved
        - approvedOn
        - createdOn
        - label
      x--orders:
        - accessKey
        - name
        - email
        - phone
        - dashboardAccess
        - pan
        - gstin
        - accountNumber
        - ifsc
        - beneficiaryCode
        - approved
        - approvedOn
        - createdOn
        - splitAccountDetailId
        - label
      x--ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
