Payment Link
POST /v1/payments/createPaymentLinkCode Example: Axios POST Request
await axios.post(
"https://api.upitranzact.com/v1/payments/createPaymentLink",
{
mid: "Your Merchant ID", // Example: ABC
amount: "Numeric value between 1-100000",
note: "Rent from customer", // Payment remark
customer_name: "John",
customer_email: "john@example.com",
customer_mobile: "Your Customer Mobile", // Correct value needed
},
{
headers: {
Authorization: "Basic base64(public_key:secret_key)"
}
}
);Key Points
Name
Value
Name
Type
Description
Example Value
Required
Last updated