Reset Card Security
Customers can reset their card security settings to their default state, where all options are set to false.
PATCH{baseUrl}/re/api/v1/card-security/reset
Payload
| Attribute | Type | Required | Description |
|---|---|---|---|
| cardId | Integer | Yes | Card ID for which to reset the settings. |
Request Example
{
"cardId": 1
}Response
| Field | Type | Description |
|---|---|---|
| id | Integer | ID of security setting. |
| transactionType | String | Type of transaction to which the security setting is linked. |
| title | String | Title of security setting. |
| description | String | Description related to security setting. |
| enabled | Boolean | false — reset to default. |
200 — SUCCESS
{
"data": [
{
"id": 69,
"transactionType": "ATM_WITHDRAWAL",
"title": "Block ATM Withdrawal Transactions",
"description": "Block ATM Withdrawal transactions, if you lost your ATM then you can block withdrawal from ATM for extra security ASAP!",
"enabled": false
},
{
"id": 70,
"transactionType": "PURCHASE",
"title": "Block Purchase Transactions",
"description": "Online Purchase transactions are generally high-risk transactions. You can block them for extra security.",
"enabled": false
},
{
"id": 71,
"transactionType": "PURCHASE",
"title": "Block Contactless Transactions",
"description": "You can block transactions when card was not present at the time of transaction.",
"enabled": false
},
{
"id": 72,
"transactionType": "ALL",
"title": "Location Based Security",
"description": "You can block all international transactions by turning it on.",
"enabled": false
}
]
}