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

# Get Bulk Payout Recipients

> Retrieve row-level recipients and validation results for a bulk payout batch

Returns recipients ordered by their original CSV row number. Each record includes the resolved bank details, payout amount, row fee, transaction ID, validation result, and local status.

```bash theme={null}
curl --request GET \
  --url https://api-production.fossapay.com/api/v1/payouts/batches/2ebee4e9-e4d7-4cbe-b6ee-eaf75369b851/recipients \
  --header "x-api-key: $FOSSAPAY_API_KEY"
```

`validationStatus` and `validationMessage` can be `null` until validation is available. Row correction and deletion after submission are not currently exposed through FossaPay.


## OpenAPI

````yaml api-reference/openapi.json GET /api/v1/payouts/batches/{batchId}/recipients
openapi: 3.1.0
info:
  title: FossaPay API
  description: >-
    FossaPay API for checkout wallets, master-wallet payouts, customer
    management, NGN wallets, crypto wallets, transfers, fees, banks, and
    webhooks.
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api-production.fossapay.com
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /api/v1/payouts/batches/{batchId}/recipients:
    get:
      tags:
        - Bulk Payouts
      summary: Get recipients in a bulk payout batch
      operationId: ExternalPayoutController_getBatchRecipients
      parameters:
        - name: batchId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Recipients and validation results retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BulkPayoutRecipientsResponse'
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '403':
          description: Merchant is not eligible
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
        '404':
          description: Batch not found for this merchant
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiError'
components:
  schemas:
    BulkPayoutRecipientsResponse:
      type: object
      required:
        - status
        - statusCode
        - message
        - data
      properties:
        status:
          type: string
          const: success
        statusCode:
          type: integer
          const: 200
        message:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/BulkPayoutRecipient'
      additionalProperties: false
    ApiError:
      type: object
      properties:
        status:
          oneOf:
            - type: string
            - type: boolean
        statusCode:
          type: integer
        message:
          type: string
        error:
          type: string
        code:
          type: string
        errors:
          type: object
          additionalProperties: true
      additionalProperties: true
    BulkPayoutRecipient:
      type: object
      required:
        - id
        - batchId
        - rowNumber
        - accountNumber
        - bankName
        - amount
        - feeAmount
        - status
        - createdAt
        - updatedAt
      properties:
        id:
          type: string
          format: uuid
        batchId:
          type: string
          format: uuid
        rowNumber:
          type: integer
        recipientName:
          type:
            - string
            - 'null'
        accountNumber:
          type: string
        bankName:
          type: string
        bankCode:
          type:
            - string
            - 'null'
        amount:
          type: string
        feeAmount:
          type: string
        narration:
          type:
            - string
            - 'null'
        transactionId:
          type:
            - string
            - 'null'
          format: uuid
        providerRecipientId:
          type:
            - string
            - 'null'
        validationStatus:
          type:
            - string
            - 'null'
        validationMessage:
          type:
            - string
            - 'null'
        status:
          type: string
          enum:
            - pending
            - completed
            - failed
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````