API Test Keys
Update UPI Payment Link
PATCH
/v1/payment_links/:id
Click to copy
Use this endpoint to edit the UPI Payment Link details such as the reference id, expiry date, enabling reminders and so on.
Is this page helpful?
1curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET] \2-X PATCH https://api.razorpay.com/v1/payment_links/plink_Et2G7ymGcTTuM5 \3-H 'Content-type: application/json' \4-d '{5"reference_id": "TS35",6"expire_by": 1653347540,7"reminder_enable":false,8"notes":{9"policy_name": "Jeevan Saral"10}11}'
Success
Failure
1{2"accept_partial": false,3"amount": 100,4"amount_paid": 100,5"cancelled_at": 0,6"created_at": 1602522293,7"currency": "INR",8"customer": {9"contact": "9000090000",10"email": "gaurav.kumar@razorpay.com"11},12"description": "Payment for Acme Inc",13"expire_by": 1653347540,14"expired_at": 0,15"first_min_partial_amount": 0,16"id": "plink_Fo48rl281ENAg9",17"notes": {18"policy_name": "Jeevan Saral"19},20"notify": {21"email": true,22"sms": true23},24"order_id": "order_Fo491cL6NGAjkI",25"payments": [26{27"amount": 100,28"created_at": 1602522351,29"method": "upi",30"payment_id": "pay_Fo49sHbQ78PCMI",31"status": "captured"32}33],34"reference_id": "TS35",35"reminder_enable": false,36"reminders": [],37"short_url": "https://rzp.io/i/XQiMe4w",38"status": "paid",39"updated_at": 1602523645,40"upi_link": true,41"user_id": "FmjfFPCOUOAcSH"42}
Path Parameters
id
*
string
Unique identifier of the Payment Link.
Request Parameters
accept_partial
boolean
Indicates whether customers can make
using the Payment Link. Possible values:true
: Customer can make partial payments.false
(default): Customer cannot make partial payments.
reference_id
string
Adds a unique reference number to an existing link.
expire_by
integer
Timestamp, in Unix format, when the payment links should expire.
notes
object
Key-value pair that can be used to store additional information about the entity. Maximum 15 key-value pairs, 256 characters (maximum) each. For example, "note_key": "Payment Link for Groeceries”
.
Response Parameters
accept_partial
boolean
Indicates whether customers can make
using the Payment Link. Possible values:true
: Customer can make partial payments.false
: (default): Customer cannot make partial payments.
amount
integer
Amount to be paid using the Payment Link. Must be in the smallest unit of the currency. For example, if you want to receive a payment of MYR 300.00, you must enter the value 30000
. In the case of three decimal currencies, such as KWD, BHD and OMR, to refund a payment of 295.991, pass the value as 295990. And in the case of zero decimal currencies such as JPY, to refund a payment of 295, pass the value as 295.
Watch Out!
As per payment guidelines, you should pass the last decimal number as 0 for three decimal currency payments. For example, if you want to refund a customer 99.991 KD for a transaction, you should pass the value for the amount parameter as 99990
and not 99991
.
amount_paid
integer
Amount paid by the customer.
callback_url
string
If specified, adds a redirect URL to the Payment Link. Once the customer completes the payment, they are redirected to the specified URL.
callback_method
string
If callback_url
parameter is passed, callback_method
must be passed with the value get
.
cancelled_at
integer
Timestamp, in Unix, at which the Payment Link was cancelled by you.
created_at
integer
Timestamp, in Unix, indicating when the Payment Link was created.
currency
string
Defaults to MYR.
customer
string
Customer details.
Show child parameters (3)
description
string
A brief description of the Payment Link.
expire_by
integer
Timestamp, in Unix, when the Payment Link will expire. By default, a Payment Link will be valid for six months from the date of creation. Please note that the expire by date cannot exceed more than six months from the date of creation.
expired_at
integer
Timestamp, in Unix, at which the Payment Link expired.
first_min_partial_amount
integer
Minimum amount that must be paid by the customer as the first partial payment. For example, if an amount of MYR 700.00 is to be received from the customer in two installments of #1 - MYR 500.00, #2 - MYR 200.00, then you can set this value as 500000
.
id
string
Unique identifier of the Payment Link. For example, plink_ERgihyaAAC0VNW
.
notes
object
Set of key-value pairs that you can use to store additional information. You (Businesses) can enter a maximum of 15 key-value pairs, with each value having a maximum limit of 256 characters.
notify
array
Defines who handles Payment Link notification.
Show child parameters (2)
payments
array
Payment details such as amount, payment id, payment link id and more. This array is populated only after a payment is made by the customer or if the payment fails. Until then, the value is null
.
Show child parameters (7)
reference_id
string
Reference number tagged to a Payment Link. Must be a unique number for each Payment Link. The maximum character limit supported is 40.
short_url
string
The unique short URL generated for the Payment Link.
status
string
Displays the current state of the Payment Link. Possible values:
created
partially_paid
expired
cancelled
paid
updated_at
integer
Timestamp, in Unix, indicating when the Payment Link was updated.
reminder_enable
boolean
Used to send
for the Payment Link. Possible values:true
: To send reminders.false
: To disable reminders.
user_id
string
A unique identifier for the user role through which the Payment Link was created. For example, HD1JAKCCPGDfRx
.
Errors
update can only be made in created or partially paid state
Error Status: 400
A payment link has been passed in paid
state.
Solution
wrong input fields sent.
Error Status: 400
When wrong input fields are sent while updating the Payment Link.
Solution
The id provided does not exist
Error Status: 400
The Payment Link does not belong to the requestor business, or it doesn't exist.
Solution
The api {key/secret} provided is invalid
Error Status: 4xx
There is a mismatch between the API credentials passed in the API call and the API credentials generated on the dashboard.
Solution
Update UPI Payment Link
PATCH
/v1/payment_links/:id
Click to copy
Use this endpoint to edit the UPI Payment Link details such as the reference id, expiry date, enabling reminders and so on.
Is this page helpful?
Path Parameters
id
*
string
Unique identifier of the Payment Link.
Request Parameters
accept_partial
boolean
Indicates whether customers can make
using the Payment Link. Possible values:true
: Customer can make partial payments.false
(default): Customer cannot make partial payments.
reference_id
string
Adds a unique reference number to an existing link.
expire_by
integer
Timestamp, in Unix format, when the payment links should expire.
notes
object
Key-value pair that can be used to store additional information about the entity. Maximum 15 key-value pairs, 256 characters (maximum) each. For example, "note_key": "Payment Link for Groeceries”
.
Response Parameters
accept_partial
boolean
Indicates whether customers can make
using the Payment Link. Possible values:true
: Customer can make partial payments.false
: (default): Customer cannot make partial payments.
amount
integer
Amount to be paid using the Payment Link. Must be in the smallest unit of the currency. For example, if you want to receive a payment of MYR 300.00, you must enter the value 30000
. In the case of three decimal currencies, such as KWD, BHD and OMR, to refund a payment of 295.991, pass the value as 295990. And in the case of zero decimal currencies such as JPY, to refund a payment of 295, pass the value as 295.
Watch Out!
As per payment guidelines, you should pass the last decimal number as 0 for three decimal currency payments. For example, if you want to refund a customer 99.991 KD for a transaction, you should pass the value for the amount parameter as 99990
and not 99991
.
amount_paid
integer
Amount paid by the customer.
callback_url
string
If specified, adds a redirect URL to the Payment Link. Once the customer completes the payment, they are redirected to the specified URL.
callback_method
string
If callback_url
parameter is passed, callback_method
must be passed with the value get
.
cancelled_at
integer
Timestamp, in Unix, at which the Payment Link was cancelled by you.
created_at
integer
Timestamp, in Unix, indicating when the Payment Link was created.
currency
string
Defaults to MYR.
customer
string
Customer details.
Show child parameters (3)
description
string
A brief description of the Payment Link.
expire_by
integer
Timestamp, in Unix, when the Payment Link will expire. By default, a Payment Link will be valid for six months from the date of creation. Please note that the expire by date cannot exceed more than six months from the date of creation.
expired_at
integer
Timestamp, in Unix, at which the Payment Link expired.
first_min_partial_amount
integer
Minimum amount that must be paid by the customer as the first partial payment. For example, if an amount of MYR 700.00 is to be received from the customer in two installments of #1 - MYR 500.00, #2 - MYR 200.00, then you can set this value as 500000
.
id
string
Unique identifier of the Payment Link. For example, plink_ERgihyaAAC0VNW
.
notes
object
Set of key-value pairs that you can use to store additional information. You (Businesses) can enter a maximum of 15 key-value pairs, with each value having a maximum limit of 256 characters.
notify
array
Defines who handles Payment Link notification.
Show child parameters (2)
payments
array
Payment details such as amount, payment id, payment link id and more. This array is populated only after a payment is made by the customer or if the payment fails. Until then, the value is null
.
Show child parameters (7)
reference_id
string
Reference number tagged to a Payment Link. Must be a unique number for each Payment Link. The maximum character limit supported is 40.
short_url
string
The unique short URL generated for the Payment Link.
status
string
Displays the current state of the Payment Link. Possible values:
created
partially_paid
expired
cancelled
paid
updated_at
integer
Timestamp, in Unix, indicating when the Payment Link was updated.
reminder_enable
boolean
Used to send
for the Payment Link. Possible values:true
: To send reminders.false
: To disable reminders.
user_id
string
A unique identifier for the user role through which the Payment Link was created. For example, HD1JAKCCPGDfRx
.
Errors
update can only be made in created or partially paid state
Error Status: 400
A payment link has been passed in paid
state.
Solution
wrong input fields sent.
Error Status: 400
When wrong input fields are sent while updating the Payment Link.
Solution
The id provided does not exist
Error Status: 400
The Payment Link does not belong to the requestor business, or it doesn't exist.
Solution
The api {key/secret} provided is invalid
Error Status: 4xx
There is a mismatch between the API credentials passed in the API call and the API credentials generated on the dashboard.
Solution
1curl -u [YOUR_KEY_ID]:[YOUR_KEY_SECRET] \2-X PATCH https://api.razorpay.com/v1/payment_links/plink_Et2G7ymGcTTuM5 \3-H 'Content-type: application/json' \4-d '{5"reference_id": "TS35",6"expire_by": 1653347540,7"reminder_enable":false,8"notes":{9"policy_name": "Jeevan Saral"10}11}'
Success
Failure
1{2"accept_partial": false,3"amount": 100,4"amount_paid": 100,5"cancelled_at": 0,6"created_at": 1602522293,7"currency": "INR",8"customer": {9"contact": "9000090000",10"email": "gaurav.kumar@razorpay.com"11},12"description": "Payment for Acme Inc",13"expire_by": 1653347540,14"expired_at": 0,15"first_min_partial_amount": 0,16"id": "plink_Fo48rl281ENAg9",17"notes": {18"policy_name": "Jeevan Saral"19},20"notify": {21"email": true,22"sms": true23},24"order_id": "order_Fo491cL6NGAjkI",25"payments": [26{27"amount": 100,28"created_at": 1602522351,29"method": "upi",30"payment_id": "pay_Fo49sHbQ78PCMI",31"status": "captured"32}33],34"reference_id": "TS35",35"reminder_enable": false,36"reminders": [],37"short_url": "https://rzp.io/i/XQiMe4w",38"status": "paid",39"updated_at": 1602523645,40"upi_link": true,41"user_id": "FmjfFPCOUOAcSH"42}