v1

latestOpenAPI 3.0.02026-07-242035712.0 MB
Apata

Update Card Metadata in 3DS

This API provides the ability to update the card metadata in 3DS by passing the client id and token details

post/pws/pws_update_card_meta_data_3ds/

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 for the card.

user_idstring

User Id of the Customer who triggered the API request.

remarksstring

Remarks for API request

cardProgramIdstring

ID for a Card Program.

languagestring

ISO 639-1 two-letter language code.

emailstring email

card Holder Email.

phoneNumberstring

card Holder Mobile Number. phone number format i.e 00 (country code) phone number or + (country code) phone number.

enabledboolean

Whether card is enabled. Disabled cards fail authentication with the ACS. Default value is true.

biometricsConsent'GRANTED, REVOKED'

Whether biometric data collection and processing is permitted on the card. Default value is GRANTED.

testableboolean

Whether card can be used for test transactions.. Default value is false.

3ds_challenge_profilestring

Unique identifier for the challenge profile. challengeMethods will be ignored if this value is not null.

Example request

{
  "api_call_unique_identifier": "438574845790657485",
  "client_id": 760131,
  "token": 311012081,
  "cardProgramId": "ec737f30-0c61-4383-9732-83d7c7b38b49",
  "language": "en",
  "email": "akshay@paymentology.com",
  "phoneNumber": "00792736252",
  "enabled": true,
  "biometricsConsent": "GRANTED",
  "3ds_challenge_profile": "950c886e-8eba-4465-8443-d22f90d269f8"
}

Response

Successful Response

Example response

{
  "header": {
    "error_desc": "success"
  },
  "body": {
    "externalId": "string",
    "scheme": "VISA",
    "language": "en",
    "biometricConsent": "GRANTED",
    "cardProgramId": "ec737f30-0c61-4383-9732-83d7c7b38b49",
    "challengeProfileId": "950c886e-8eba-4465-8443-d22f90d269f8"
  }
}