search

POSTPayoutLink Resend API

Use Case

This API is used to resend notifications to Active Payout Links.

HTTP Headers

ATTRIBUTE DESCRIPTION

x-mid

string(50)
mandatory

Paytm provides MID as a unique identifier to each merchant. For your staging MID, click here. You get the production MID post the account activation.

x-checksum

string(108)
mandatory

Signature encryption for validation. It's value to be sent should be the checksum string created by using Paytm checksum library.
Note: Create the signature using all the request parameters.

Request Attributes

API Content Type: JSON

ATTRIBUTE DESCRIPTION

mid

string
optional

Paytm provides MID as a unique identifier to each merchant. For your staging MID, click here. You get the production MID post the account activation.
Example: INTEGR7769XXXXXX9383

payoutLinkId

string
mandatory

It is a unique alphanumeric Id generated by Paytm for each payoutLink.
Example: 51D2J06xxxxxxxxxx641YSg0P

Response Attributes

API Content Type: JSON

 

ATTRIBUTE DESCRIPTION

statusCode

string

payoutLink resend request status
Example: SUCCESS

status

string

payoutLink resend request statusCode
Example: DE_001

statusMessage

string

payoutLink resend request statusMessage
Example: The link is resent successfully

Response Codes & Messages

statusCodestatusstatusMessage
PL_001SUCCESSSuccess
PL_010FAILUREparam is mandatory and it's can't be null or blank
PL_011FAILUREparam doesn't contain a valid value
PL_013FAILUREparam doesn't contain valid length, It should be <length> or less
PL_019FAILUREMID is not valid
PL_023FAILUREMid is not active
PL_041FAILUREUnable to process your request. Please try after some time
PL_054FAILURESubwalletGuid is not correct, Please check and try again
PL_057FAILUREInvalid request
PL_400FAILUREInvalid Request Parameter
PL_401FAILUREAuthentication Parameters Required
PL_402FAILUREAccess Denied
PL_403FAILUREAPI Not Found
PL_404FAILUREUnable to authenticate the request
PL_405FAILURERemote IP not whitelisted
PL_406FAILUREInvalid Client-Token
PL_407FAILUREClient-Token Required
PL_408FAILUREChecksum Required
PL_409FAILUREChecksum Verification Failed
PL_410FAILURE Method Not Supported
PL_411FAILUREMedia-Type Not Supported
PL_500FAILURESystem Error
Staging
Production
https://staging-dashboard.paytm.com/pls/api/v1/payout-link/resendcopy icon
REQUEST
RESPONSE
CURL
JAVA
NODE
PHP
PYTHON
DOTNET
curl -X POST 'https://staging-dashboard.paytm.com/pls/api/v1/payout-link/resend' \
--header 'Content-Type: application/json' \
--header 'x-mid: {mid}' \
--header 'x-checksum: {checksum}' \
--data '{"payoutLinkId":"51D2J06xxxxxxxxxx641YSg0P"}' \   
copy icon