💻
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
  • Cancel Link

Was this helpful?

  1. smart send
  2. Smart Send V2 API

Cancel Smart Send

To Cancel a particular smart send payment link.

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

https://test.payumoney.com/payout/v2/smartSend/cancel/{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

Example

Content-Type : application/json

Method: POST

Curl:

curl --location --request PUT 'https://payumoney.com/payout/v2/smartSend/cancel/28901' \
--header 'authorization: Bearer b6c0782b9eb08b43681776bad60ca1894a8421539e7c96c9aa32c0805994046d' \
--header 'pid: 1111312' \
--header 'Cookie: ApplicationGatewayAffinity=1dc65bfbfb8a3c29019e96ae8070c323; ApplicationGatewayAffinityCORS=1dc65bfbfb8a3c29019e96ae8070c323'

Response:

{
	"status": 0,
	"msg": "Smart send link cancelled",
	"code": null,
	"data": null
}

Cancel Link

PUT https://payout.payumoney.com/payout/v2/smartSend/cancel/12121

This endpoint allows you to get free cakes.

Path Parameters

Name
Type
Description

smartSendId

string

Smart Send Id

Headers

Name
Type
Description

pid

string

Payout Merchant Id

Authentication

string

Authentication token

{
	"status": 0,
	"msg": "Smart send link cancelled",
	"code": null,
	"data": null
}

PreviousSmart Send StatusNextExtend Expiry Date

Last updated 3 years ago

Was this helpful?