Skip to main content

Documentation

List Documents of Payout

Retrieve details of all supporting document files that were previously uploaded to a specific payout.

    • payout

    • ID of the payout. String starting with payout_.

The following parameters are returned for each file that was uploaded.

  • /v1/payouts/:payout/documents/

  • List Documents of Payout

  • curl -X get 'https://sandboxapi.rapyd.net/v1/payouts/payout_af69206aec6c2a22327f774f08d4ae32' \
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'idempotency: your-idempotency-parameter-here' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here'
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "7461fb67-ba67-44ad-98d1-1124648e2a2f"
        },
        "data": [
            {
                "payout_token": "payout_af69206aec6c2a22327f774f08d4ae32",
                "file_id": "6de28b3a-09f3-413e-94e0-14780548c6ae",
                "file_name": "Mass Payout for Itamar - ua_general_card.csv",
                "file_extension": "csv",
                "created_at": "2025-10-15T07:48:38.000Z"
            },
            {
                "payout_token": "payout_af69206aec6c2a22327f774f08d4ae32",
                "file_id": "83916812-af6b-47a7-8c43-8621114a478b",
                "file_name": "Mass Payout Test - 15_05_25 - Copy.csv",
                "file_extension": "csv",
                "created_at": "2025-10-15T07:48:38.000Z"
            }
        ]
    }