Set Card Limit And Restriction

URL

The endpoint and http method information used in determining the limits (daily, weekly, monthly) and restrictions (online transaction, phone/mail shopping, contactless transaction, overseas use) for the relevant card are given below.

HTTP Method URL
POST /v1/cp/Issuing/SetCardLimitAndRestriction

Request Params

Params Type Mandatory
account_number string Yes
wallet_number string Yes
card_no string Yes
auth_ecom bool Yes
auth_moto bool Yes
auth_contactless bool Yes
auth_int bool Yes
set_limit bool No
daily_max_amount decimal No
weekly_max_amount decimal No
monthly_max_amount decimal No
yearly_max_amount decimal No

Response Params

Params Type
status int
code string
message string
payload object

REQUEST (POST):

{
  "account_number": "4568767534",
  "wallet_number": "354354123312345",
  "card_no": "434610tplype6789",
  "auth_ecom": true,
  "auth_moto": true,
  "auth_contactless": true,
  "auth_int": true,
  "set_limit": true,
  "daily_max_amount": 500,
  "weekly_max_amount": 1000,
  "monthly_max_amount": 5000,
  "yearly_max_amount": 50000
}

RESPONSE:

{
    "status": 0,
    "code": null,
    "message": null,
    "payload": true
}