post https://api.instantpay.in/user/outlet/list
List of Merchant onboarded through the Merchant Onboarding APIs
Header Parameters
Name | Type | Description | Mandatory (M) , Optional (O) | Provided by INSTANTPAY (Y/N) |
---|---|---|---|---|
X-Ipay-Auth-Code | String | Auth Code -1 (Fixed) | M | Y |
X-Ipay-Client-Id | String | Unique Client ID | M | Y |
X-Ipay-Client-Secret | String | Unique secret key | M | Y |
X-Ipay-Endpoint-Ip | String | End Customer IP Address | M | N |
Request Parameters
Parameters | Type | Mandatory (M) , Optional(O) | Description |
---|---|---|---|
pagination | Array | M | Details of pagination |
pagination.pageNumber | String | M | Current Page Number |
pagination.recordsPerPage | String | M | Number of Details per Page |
outletId | Number | O | Unique Outlet Id of Customers |
mobile | String | O | Mobile Number of Customers |
pan | String | O | Pan Number of Customers |
Request Parameters
curl --location --request POST 'https://api.instantpay.in/user/outlet/list' \
--header 'Accept: application/json' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"pagination" : {
"pageNumber" : 1,
"recordsPerPage": "10"
},
"filters" : {
"outletId" : 0,
"mobile" : "",
"pan" : ""
}
}'
POST /user/outlet/list HTTP/1.1
Host: api.instantpay.in
Accept: application/json
X-Ipay-Auth-Code: {{authCode}}
X-Ipay-Client-Id: {{clientId}}
X-Ipay-Client-Secret: {{clientSecret}}
X-Ipay-Endpoint-Ip: {{endPointIP}}
Content-Type: application/json
{
"pagination" : {
"pageNumber" : 1,
"recordsPerPage": "10"
},
"filters" : {
"outletId" : 0,
"mobile" : "",
"pan" : ""
}
}
Response Parameters
Name | Type | Description |
---|---|---|
statuscode | String | InstantPay Status Code |
actcode | String | Action Code |
status | String | Status Message |
data | Array | Response Data (If Present) |
timestamp | String | Current time (YYYY-MM-DD HH:II:SS) |
ipay_uuid | String | Request reference number |
orderid | String | Transaction Id ( If transaction otherwise it is null ) |
environment | String | Live |
Sample Response
{
"statuscode": "TXN",
"actcode": null,
"status": "Transaction Successful",
"data": {
"meta": {
"totalPages": 1,
"currentPage": 1,
"totalRecords": 4,
"recordsOnCurrentPage": 3,
"recordFrom": 1,
"recordTo": 3
},
"records": [
{
"outletId": 72762,
"name": "Sample Name",
"mobile": "7428585742",
"email": "[email protected]",
"pan": "ABCD1234E",
"bankAccounts": [
{
"accountNumber": "34567890123",
"ifsc": "SBIN0000001",
"addedAt": "2023-12-22 09:43:31",
"isPrimary": 1
}
],
"KYCStatus": true,
"isActive": true,
"bankAccount": [],
"products": {
"wapStatus": null
}
},
"timestamp": "2023-12-22 18:01:53",
"ipay_uuid": "h0069ae8d711-7e7f-4014-a320-ff21cf82a840-az9ISxODTddJ",
"orderid": null,
"environment": "LIVE",
"internalCode": null
}
Note :
If wapStatus is true then Outlet is enabled from the Bank for AePS transactions end and if it is false it is still pending at the bank end.