# Search Payout Transfers

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /api/v0/payout-transaction/search:
    post:
      summary: Search Payout Transfers
      deprecated: false
      description: >-

        :::highlight purple 📌

        Use this API to search for payout transfers that you have initiated, by
        providing the appropriate request parameters. This API supports multiple
        use cases, including:

        - Check the status of a specific transaction by searching with
        `transactionId`

        - Get the status of all transactions in a batch by searching with
        `batchTransactionId`

        - Retrieve transactions initiated within a specific date range by using
        `createdOnFrom` and `createdOnTo`

        This helps you efficiently track, reconcile, and audit your payout
        activity.

        :::


        <DataSchema id="2796944" />



        Response will be list of `PayoutTransactionSearchResponse` object

        <DataSchema id="2796945" />
      operationId: searchBatchPayoutTransaction
      tags:
        - Payouts/APIs - Payout/Transfer
        - Payout Transaction Apis
      parameters:
        - name: clientId
          in: header
          description: ''
          required: true
          example: CEKxxxxxxx
          schema:
            type: string
        - name: User-Agent
          in: header
          description: ''
          required: true
          example: ''
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Request'
            example: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApplicationResponseString'
          headers: {}
          x-apidog-name: OK
      security: []
      x-apidog-folder: Payouts/APIs - Payout/Transfer
      x-apidog-status: released
      x-run-in-apidog: https://app.apidog.com/web/project/616243/apis/api-8990269-run
components:
  schemas:
    Request:
      required:
        - request
      type: object
      properties:
        request:
          type: string
          description: Encrypted request payload string
      x-apidog-orders:
        - request
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
    ApplicationResponseString:
      type: object
      properties:
        response_code:
          type: integer
          format: int32
        response_message:
          type: string
        payload:
          type: string
      x-apidog-orders:
        - response_code
        - response_message
        - payload
      x-apidog-ignore-properties: []
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://ekpayout-uat.enkash.in
    description: Testing Env
security: []

```
