Get Card Limit And Restriction

URL

The endpoint and http method information used in querying 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/GetCardLimitAndRestriction

Request Params

Params Type Mandatory
account_number string Yes
wallet_number string Yes
card_no string Yes

Response Params

Params Type
status int
code string
message string
payload object
profile_code string
details obje
region string
limits obje
restriction_type string
currency_code int
single_transaction_max_amount decimal
periodic_limits obje
limit_period string
limit decimal
available_limit decimal
max_count decimal
available_count decimal

REQUEST (POST):

{
  "account_number": "4864645645868",
  "wallet_number": "5164648465468",
  "card_no": "434610xbbayv6789"
}

RESPONSE:

{
    "status": 0,
    "code": null,
    "message": null,
    "payload": {
        "profile_code": null,
        "details": [
            {
                "region": null,
                "limits": [
                    {
                        "restriction_type": "SalesLimit",
                        "currency_code": 949,
                        "single_transaction_max_amount": 0.0,
                        "periodic_limits": [
                            {
                                "limit_period": "W",
                                "limit": 100.0,
                                "available_limit": 100.0,
                                "max_count": 0,
                                "available_count": 0
                            }
                        ]
                    }
                ]
            }
        ]
    }
}