💻
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
  • Request Headers
  • Request Params

Was this helpful?

  1. smart send
  2. Smart Send V2 API

Extend Expiry Date

This API is used to extend the expiry date of a valid link. A valid link is one that isn't expired or a link for which transaction is in a pending state.

PreviousCancel Smart SendNextBulk Smart Send

Last updated 3 years ago

Was this helpful?

https://test.payumoney.com/payout/v2/smartSend/expiry/{smartSendId}

Request Headers

Key

Description

Data Type

Mandatory

Possible Value

Authorization

Access token generated earlier.

String

Yes

Bearer {access_token}

pid

This is the merchant id provided while onboarding

String

Yes

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

Request Params

Key

Description

Data Type

Mandatory

Possible Value

expiryDate

Date to which the link is to be extended.

Date

Yes

2021-07-24T18:18:10.000Z

curl --location --request PUT 'https://oneapi.payu.in/payout/v2/smartSend/expiry/123' \
--header 'mid: 8000051' \
--header 'authorization: Bearer b6c0782b9eb08b43681776bad60ca1894a8421539e7c96c9aa32c0805994046d' \
--header 'pid: 1111312' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'expiryDate=2021-07-24T18:18:10.000Z'

Note: The API accepts the following date pattern:

yyyy-MM-dd'T'HH:mm:ss.000Z
https://payout.payumoney.com/payout/v2/smartSend/expiry/{smartSendId}