v1

latestOpenAPI 3.0.02026-07-242035712.0 MB
SCA Contactless Limits

Reset SCA Counter

This web service resets the SCA counter for a card. Pass a public token and client ID to reset the transaction counter to zero.

post/pws/v2/pws_reset_contactless_limits/

Request body

api_call_unique_identifierstring required

Unique number that must be passed at each API request. Identifier to make each API request unique

client_idinteger required

Unique identifier for the client which Paymentology will provide at outset

tokeninteger required

Public Token Identifier

user_idstring

User Id of the Customer who triggered the API request.

remarksstring

Remarks for API request

Example request

{
  "api_call_unique_identifier": "438574845790657485",
  "client_id": 760131,
  "token": 3456789
}

Response

Successful Response

Example response

{
  "header": {
    "error_desc": "success"
  },
  "body": {
    "token": 3456789,
    "limits": [
      {
        "limit_type": "COUNTER",
        "limit_key": "Contactless Transaction Counter",
        "limit_value": 5,
        "remaining_limit_value": 3
      }
    ]
  }
}