Bulk File Upload

Curl Request:

curl --location --request POST 'https://testoneapi.payu.in/payout/v2/smartSend/bulkUpload/transfers' \
--header 'authorization: Bearer d49b1172c6800273398d46ba4db53506fd6c17be7f08f958ea750db08d5ae59d' \
--header 'pid: 1111161' \
--header 'accept-language: en-US,en;q=0.9,hi;q=0.8' \
--form 'file=@"/Users/divik.bhatnagar/Desktop/sampleBulkSmartSend.xlsx"'

pid is the payoutMerchantId and is different from payumoney merchant id, please check payouts dashboard or call customer support if you don’t know your payoutsMerchantID

Response:

{
    "status": 0,
    "msg": null,
    "code": null,
    "data": {
        "id": 268,
        "fileName": "57b829a0-0072-486f-b307-689d659b68c41626256208422.xlsx",
        "merchantId": 1111161,
        "displayName": "sampleBulkSmartSend.xlsx",
        "totalRows": 3,
        "successfulRows": 0,
        "failedRows": 0,
        "status": "REQUESTED",
        "addedOn": "2021-07-14T09:50:08.423+0000",
        "updatedOn": "2021-07-14T09:50:08.423+0000",
        "uploadedBy": "11eb-07b8-d41d2154-b089-02f413145cce",
        "fileExportId": null,
        "fileSource": "DASHBOARD_SMART_SEND"
    }
}

Last updated