Card Usage Control
- This API is used to manage channel based limits.
Endpoint
Make sure you are familiar with how APIs work:
- Method: POST
- URL: https://uat.nupaytech.com/api/v1/cards/usage
API Request Fields
Sr.No |
Field |
Min-Max Length |
Mandatory? |
Data Type |
Description |
Comments |
1 |
crn |
16-19 |
M |
ANS |
Card Reference Number |
- |
2 |
domestic |
- |
M |
array |
Channel controls and limits |
- |
API Response Fields
Sr.No |
Field |
Data Type |
Description |
Comments |
1 |
status_code |
Integer |
API Status Code |
- |
2 |
message |
string |
API response message |
- |
Execution Request Example
{
"crn": "230000082900",
"domestic": {
"ecom_allowed": true,
"ecom_limit": "100",
"pos_allowed": true,
"pos_limit": "10000",
"atm_allowed": true,
"atm_limit": "0"
}
}
Success Response Example
{
"status_code": 200,
"message": "Card Limits and Channels Updated"
}