Dictionary<string, object> qrRequest = new Dictionary<string, object>();
qrRequest.Add("type", "upi_qr");
qrRequest.Add("name", "Store_1");
qrRequest.Add("usage", "single_use");
qrRequest.Add("fixed_amount", true);
qrRequest.Add("payment_amount", 300);
qrRequest.Add("description", "For Store 1");
qrRequest.Add("customer_id", "cust_MHYe2dVX323WYD");
qrRequest.Add("close_by", 1681615838);
Dictionary<string, object> notes = new Dictionary<string, object>();
notes.Add("notes_key_1", "Tea, Earl Grey, Hot");
notes.Add("notes_key_2", "Tea, Earl Grey… decaf.");
qrRequest.Add("notes", notes);
QrCode qrcode = client.QrCode.Create(qrRequest);
Parameters:
Name | Type | Description |
---|---|---|
type (mandatory) | string | The type of QR code i.e, upi_qr /bharat_qr |
name | string | Label entered to identify the QR code. |
usage (mandatory) | string | Indicates if the QR code should be allowed to accept single payment or multiple payments i.e, single_use /multiple_use |
fixed_amount | boolean | Indicates if the QR should accept payments of specific amounts or any amount. |
payment_amount(* mandatory if fixed_amount is true) | integer | Indicates if the QR should accept payments of specific amounts or any amount. |
customer_id | string | Unique identifier of the customer the QR code is linked with |
description | string | A brief description about the QR code. |
close_by | integer | UNIX timestamp at which the QR code is scheduled to be automatically closed. The time must be at least 15 minutes after the current time. |
notes | object | Key-value pair that can be used to store additional information about the QR code. Maximum 15 key-value pairs, 256 characters (maximum) each. |
Response:
{
"id": "qr_Z6t7VFTb9xHeOs",
"entity": "qr_code",
"created_at": 1623660301,
"name": "Store_1",
"usage": "single_use",
"type": "upi_qr",
"image_url": "https://rzp.io/i/BWcUVrLp",
"payment_amount": 300,
"status": "active",
"description": "For Store 1",
"fixed_amount": true,
"payments_amount_received": 0,
"payments_count_received": 0,
"notes": {
"purpose": "Test UPI QR code notes"
},
"customer_id": "cust_Z6t7VFTb9xHeOs",
"close_by": 1681615838
}
Dictionary<string, object> qrRequest = new Dictionary<string, object>();
qrRequest.Add("type","upi_qr");
qrRequest.Add("name","Store_1");
qrRequest.Add("usage","single_use");
qrRequest.Add("fixed_amount",true);
qrRequest.Add("payment_amount",300);
qrRequest.Add("description","For Store 1");
qrRequest.Add("customer_id","cust_JDdNazagOgg9Ig");
qrRequest.Add("close_by",1681615838);
Dictionary<string, object> notes = new Dictionary<string, object>();
notes.Add("notes_key_1","Tea, Earl Grey, Hot");
notes.Add("notes_key_2","Tea, Earl Grey… decaf.");
qrRequest.Add("notes",notes);
Dictionary<string, object> taxInvoice = new Dictionary<string, object>();
taxInvoice.Add("number","INV001");
taxInvoice.Add("date",1589994898);
taxInvoice.Add("customer_name","Gaurav Kumar");
taxInvoice.Add("business_gstin","06AABCU9605R1ZR");
taxInvoice.Add("gst_amount",4000);
taxInvoice.Add("cess_amount",0);
taxInvoice.Add("supply_type","interstate");
qrRequest.Add("tax_invoice",taxInvoice);
QrCode qrcode = client.QrCode.Create(qrRequest);
Parameters:
Name | Type | Description |
---|---|---|
type (mandatory) | string | The type of QR code i.e, upi_qr /bharat_qr |
name | string | Label entered to identify the QR code. |
usage (mandatory) | string | Indicates if the QR code should be allowed to accept single payment or multiple payments i.e, single_use /multiple_use |
fixed_amount | boolean | Indicates if the QR should accept payments of specific amounts or any amount. |
payment_amount(* mandatory if fixed_amount is true) | integer | Indicates if the QR should accept payments of specific amounts or any amount. |
customer_id | string | Unique identifier of the customer the QR code is linked with |
description | string | A brief description about the QR code. |
close_by | integer | UNIX timestamp at which the QR code is scheduled to be automatically closed. The time must be at least 15 minutes after the current time. |
notes | object | Key-value pair that can be used to store additional information about the QR code. Maximum 15 key-value pairs, 256 characters (maximum) each. |
tax_invoice | object | This block contains information about the invoices. If not provided, the transaction will default to non-GST compliant UPI flow. |
Response:
{
"id": "qr_Z6t7VFTb9xHeOs",
"entity": "qr_code",
"created_at": 1623660301,
"name": "Store_1",
"usage": "single_use",
"type": "upi_qr",
"image_url": "https://rzp.io/i/BWcUVrLp",
"payment_amount": 300,
"status": "active",
"description": "For Store 1",
"fixed_amount": true,
"payments_amount_received": 0,
"payments_count_received": 0,
"notes": {
"purpose": "Test UPI QR code notes"
},
"customer_id": "cust_HKsR5se84c5LTO",
"close_by": 1681615838,
"tax_invoice": {
"number": "INV001",
"date": 1589994898,
"customer_name": "Gaurav Kumar",
"business_gstin": "06AABCU9605R1ZR",
"gst_amount": 4000,
"cess_amount": 0,
"supply_type": "interstate"
}
}
Dictionary<string, object> paramRequest = new Dictionary<string, object>();
paramRequest.Add("count", "1");
List<QrCode> paymentlink = client.QrCode.All(paramRequest);
Parameters:
Name | Type | Description |
---|---|---|
from | timestamp | timestamp after which the payments were created |
to | timestamp | timestamp before which the payments were created |
count | integer | number of payments to fetch (default: 10) |
skip | integer | number of payments to be skipped (default: 0) |
Response:
{
"entity": "collection",
"count": 1,
"items": [
{
"id": "qr_Z6t7VFTb9xHeOs",
"entity": "qr_code",
"created_at": 1623914648,
"name": "Store_1",
"usage": "single_use",
"type": "upi_qr",
"image_url": "https://rzp.io/i/w2CEwYmkAu",
"payment_amount": 300,
"status": "active",
"description": "For Store 1",
"fixed_amount": true,
"payments_amount_received": 0,
"payments_count_received": 0,
"notes": {
"purpose": "Test UPI QR code notes"
},
"customer_id": "cust_Z6t7VFTb9xHeOs",
"close_by": 1681615838,
"closed_at": null,
"close_reason": null
}
]
}
string qrCodeId = "qr_Z6t7VFTb9xHeOs";
QrCode qrcode = client.QrCode.Fetch(qrCodeId);
Parameters:
Name | Type | Description |
---|---|---|
qrCodeId | string | The id of the qr code to be fetched |
Response:
{
"id": "qr_Z6t7VFTb9xHeOs",
"entity": "qr_code",
"created_at": 1623915088,
"name": "Store_1",
"usage": "single_use",
"type": "upi_qr",
"image_url": "https://rzp.io/i/oCswTOcCo",
"payment_amount": 300,
"status": "active",
"description": "For Store 1",
"fixed_amount": true,
"payments_amount_received": 0,
"payments_count_received": 0,
"notes": {
"purpose": "Test UPI QR code notes"
},
"customer_id": "cust_Z6t7VFTb9xHeOs",
"close_by": 1681615838,
"closed_at": null,
"close_reason": null
}
string CustomerId = cust_JDdNazagOgg9Ig
Dictionary<string, object> paramRequest = new Dictionary<string, object>();
paramRequest.Add("customer_id", CustomerId);
List<QrCode> paymentlink = client.QrCode.All(paramRequest);
Parameters:
Name | Type | Description |
---|---|---|
CustomerId* | string | The id of the customer to which qr code need to be fetched |
Response:
{
"entity": "collection",
"count": 1,
"items": [
{
"id": "qr_Z6t7VFTb9xHeOs",
"entity": "qr_code",
"created_at": 1623660959,
"name": "Store_1",
"usage": "single_use",
"type": "upi_qr",
"image_url": "https://rzp.io/i/DTa2eQR",
"payment_amount": 300,
"status": "active",
"description": "For Store 1",
"fixed_amount": true,
"payments_amount_received": 0,
"payments_count_received": 0,
"notes": {
"purpose": "Test UPI QR code notes"
},
"customer_id": "cust_Z6t7VFTb9xHeOs",
"close_by": 1681615838
}
]
}
Dictionary<string, object> paramRequest = new Dictionary<string, object>();
params.Add("payment_id","pay_Z6t7VFTb9xHeOs");
List<QrCode> paymentlink = client.QrCode.All(paramRequest);
Parameters:
Name | Type | Description |
---|---|---|
payment_id* | string | The id of the payment to which qr code need to be fetched |
Response:
{
"entity": "collection",
"count": 1,
"items": [
{
"id": "qr_Z6t7VFTb9xHeOs",
"entity": "qr_code",
"created_at": 1623661499,
"name": "Fresh Groceries",
"usage": "multiple_use",
"type": "upi_qr",
"image_url": "https://rzp.io/i/eI9XD54Q",
"payment_amount": null,
"status": "active",
"description": "Buy fresh groceries",
"fixed_amount": false,
"payments_amount_received": 1000,
"payments_count_received": 1,
"notes": [],
"customer_id": "cust_HKsR5se84c5LTO",
"close_by": 1624472999,
"close_reason": null
}
]
}
string qrCodeId = "qr_Z6t7VFTb9xHeOs";
Dictionary<string, object> paramRequest = new Dictionary<string, object>();
paramRequest.Add("count","1");
List<Payment> qrcode = client.QrCode.FetchAllPayments(qrCodeId, paramRequest);
Parameters:
Name | Type | Description |
---|---|---|
QrCodeId* | string | The id of the qr code to which payment where made |
from | timestamp | timestamp after which the payments were created |
to | timestamp | timestamp before which the payments were created |
count | integer | number of payments to fetch (default: 10) |
skip | integer | number of payments to be skipped (default: 0) |
Response:
{
"entity": "collection",
"count": 1,
"items": [
{
"id": "pay_Z6t7VFTb9xHeOs",
"entity": "payment",
"amount": 500,
"currency": "INR",
"status": "captured",
"order_id": null,
"invoice_id": null,
"international": false,
"method": "upi",
"amount_refunded": 0,
"refund_status": null,
"captured": true,
"description": "QRv2 Payment",
"card_id": null,
"bank": null,
"wallet": null,
"vpa": "gauri.kumari@okhdfcbank",
"email": "[email protected]",
"contact": "+919999999999",
"customer_id": "cust_Z6t7VFTb9xHeOs",
"notes": [],
"fee": 0,
"tax": 0,
"error_code": null,
"error_description": null,
"error_source": null,
"error_step": null,
"error_reason": null,
"acquirer_data": {
"rrn": "116514257019"
},
"created_at": 1623662800
}
]
}
string qrCodeId = "qr_Z6t7VFTb9xHeOs";
QrCode qrcode = client.QrCode.Fetch(qrCodeId).Close();
Parameters:
Name | Type | Description |
---|---|---|
qrCodeId* | string | The id of the qr code to be closed |
Response:
{
"id": "qr_Z6t7VFTb9xHeOs",
"entity": "qr_code",
"created_at": 1623660301,
"name": "Store_1",
"usage": "single_use",
"type": "upi_qr",
"image_url": "https://rzp.io/i/BWcUVrLp",
"payment_amount": 300,
"status": "closed",
"description": "For Store 1",
"fixed_amount": true,
"payments_amount_received": 0,
"payments_count_received": 0,
"notes": {
"purpose": "Test UPI QR code notes"
},
"customer_id": "cust_Z6t7VFTb9xHeOs",
"close_by": 1681615838,
"closed_at": 1623660445,
"close_reason": "on_demand"
}
PN: * indicates mandatory fields
For reference click here