Instifi-logo
  • Home
  • About
  • Press
  • Contact
  • Demo
  • DevStudio
  • API Docs
LogIn
Instifi-logo v1.1.0
Instanow Info Systems Private Limited (InstiFi) is an RBI-authorized payment aggregator, ensuring trust, compliance, and efficiency in every transaction through PCI Compliant Certification.
GST/CIN: 30AAGCI8747M1Z6/U74999GA2022PTC015558
GST: 30AAGCI8747M1Z6
CIN: U74999GA2022PTC015558
Certificate of Authorization:232/2025
PCI logo
Quick LinksAbout UsContact UsOur ProductsSupportApi Docs
CompanyTerms & ConditionsPrivacy PolicyGrievance RedressalCancellation PolicyMerchant PolicyCompany Information
Corporate Office
Office #325, 2nd floor, Casa-del-Sol, Miramar, Panaji, Goa - 403001.
Toll-Free: +919175819104
+91 8799906284 / 86
[email protected]
Social Links
API Documentation

Payments

Introduction

Payment Gateway

Web Integration
AuthorizationCreate OrderGet Status

Create Order API

POST
/api/v1/Instify/CreateOrder

Click to copy

Use this endpoint to generate a new payment order. After the order is created, you'll receive a redirect URL for checkout.

Request Parameters

amountstring

Payment amount (amount should be 1 or above).

merchantTxnIdstring

Unique transaction identifier generated by the merchant.

orderIdstring

Order identifier created for the Authentication API.

payModestring

Payment mode selected by the customer (all, cc, dc, upi, nb).

merchantIdstring

Merchant identifier registered with InsitiFi.

productInfostring

Description of the product or transaction.

customerNamestring

Full name of the customer.

customerMobilestring

Mobile number of the customer.

customerEmailstring

Email address of the customer.

redirectionURLstring

URL where the customer will be redirected after payment completion.

currencyCodestring

Currency code used for the transaction (e.g., INR).

Response Parameters

responseCodestring

API response status code indicating success or failure.

responseMessagestring

Textual message corresponding to the response status.

data.urlstring

Redirect URL returned after order creation, to be used for checkout flow.

Curl
1curl -X POST https://api.instifi.com/api/v1/Instify/CreateOrder \
2-H "Content-Type: application/json" \
3-H "ACCESS-TOKEN: [YOUR_ACCESS_TOKEN]" \
4-d '{
5  "amount": "166",
6  "merchantTxnId": "Txn2024051224",
7  "orderId": "Order2024817",
8  "payMode": "cc",
9  "merchantId": "MerchantID",
10  "productInfo": "Testing",
11  "customerName": "[CUSTOMER_NAME]",
12  "customerMobile": "[CUSTOMER_MOBILE]",
13  "customerEmail": "[[email protected]]",
14  "redirectionURL": "https://redirectionURL.com",
15  "currencyCode": "INR"
16}'
1{
2  "responseCode": "200",
3  "responseMessage": "Success",
4  "data": {
5    "url": "https://uat.ins.com?instifi=T29qNWR2NUJGYWcwODNr..."
6  }
7}