💻
Payouts Integration
  • Introduction
  • Functional overview
  • Onboarding
  • Postman Collection
  • Authentication
  • Authentication Token
    • API to Generate Token using username/password
    • API to Generate Token using private client id
  • Refresh Tokens
    • Refresh Token API
  • IP Check
  • API Integration
  • Testing Credentials
  • API Flow Diagram
  • Beneficiary Management
    • View Beneficiary Detail
    • Beneficiary Creation / Registration
  • Core Payouts API
    • Get Account Details API
    • Cancel Transfer API
    • Check Transfer Status API
    • Initiate/Schedule Transfer API
  • Verification
    • Verify Account / Penny Test
    • Validate Vpa
    • IFSC Details
  • smart send
    • Feature
    • Smart Send API
      • Cancel Smart Send
      • Smart Send Status
    • Smart Send V2 API
      • Create Smart Send Link
      • Smart Send Status
      • Cancel Smart Send
      • Extend Expiry Date
    • Bulk Smart Send
      • Bulk File Upload
      • Bulk Process File
    • Smart Send Error Codes
    • Fetch masked Vpas
  • Webhooks
    • What are Webhooks?
    • Default Webhooks
    • Creating Webhooks
    • Set Webhook API
    • Types of webhooks
  • Settings
    • Disable queued Payout
  • FAQ
Powered by GitBook
On this page

Was this helpful?

  1. smart send
  2. Bulk Smart Send

Bulk Process File

PreviousBulk File UploadNextSmart Send Error Codes

Last updated 3 years ago

Was this helpful?

https://staging.payu.in/payout/v2/smartSend/bulkUpload/transfers/{fileId}

Curl Request:

curl --location --request PUT 'https://www.payu.in/payout/v2/smartSend/bulkUpload/transfers/267' \
--header 'authorization: Bearer d49b1172c6800273398d46ba4db53506fd6c17be7f08f958ea750db08d5ae59d' \
--header 'pid: 1111161' 

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": 267,
		"fileName": "560f7a80-c7b4-4bce-8124-8ab926420a1e1626256058980.xlsx",
		"merchantId": 1111161,
		"displayName": "sampleBulkSmartSend.xlsx",
		"totalRows": 3,
		"successfulRows": 2,
		"failedRows": 1,
		"status": "COMPLETED",
		"addedOn": "2021-07-14T09:47:39.000+0000",
		"updatedOn": "2021-07-14T10:01:44.135+0000",
		"uploadedBy": "11eb-07b8-d41d2154-b089-02f413145cce",
		"fileExportId": 26632,
		"fileSource": "DASHBOARD_SMART_SEND"
	}
}

https://payout.payumoney.com/payout/v2/smartSend/bulkUpload/transfers/{fileId}