v1

latestOpenAPI 3.0.02026-07-242035712.0 MB
Card

Enroll Card To 3DS

<ul><li class="docBullet">This web service enables the enrolment of a card for 3D-Secure service as configured for the specific product.</li><li class="docBullet">Currently supported ACS Provider are :<ul><li>TouchTech(Stripe)</li><li>FSS</li><li>Apata</li></ul></li><li class="docBullet">This Api is also used to update card Holder details at FSS side.</li><li class="docBullet">To update email and mobile number with FSS:<ol><li>Call <a href="#operation/pws_card_holder_edit">Edit Card Holder Details API </a></li><li>Call Enroll card To 3DS API to update card holder email and mobile number with FSS</li></ol></li><li class="docBullet">To update card holder detail with TouchTech(Stripe) client has to call Stripe API directly</li></ul>
post/pws/pws_enroll_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

languagestring
<ul><li >The languages used for all interactions with the cardholder (authentication page,etc. Comma separated list of ISO 639-1 codes).</li><li >Required when product is setup with TouchTech ACS</li><ul>
managerstring
<ul><li >The method used to authenticate an online transaction.<ul><li class="docBullet">self = Issuer sending SMS</li><li class="docBullet">touchtech = Touchtech sending SMS</li></ul></li><li >Required when product is setup with TouchTech ACS</li><ul>
pamstring
<ul><li >Personal account Message. card user's personal message for their account given by the customer.</li><li>Optional when product is setup with FSS ACS</li>
authentication_typestring

Type of OOB to be used.<ul><li >0 : No OOB </li><li>1 : OOB Supported</li><li>Required when product is setup with FSS ACS</li></ul>

3ds_challenge_profilestring
<ul><li >Unique identifier for the challenge profile. challengeMethods will be ignored if this value is not null.</li><li>Optional field applicable for Product setup with Apata ACS</li><ul>

Example request

{
  "api_call_unique_identifier": "438574845790657485",
  "client_id": 760131,
  "token": 311012081,
  "language": "en",
  "manager": "self",
  "3ds_challenge_profile": "950c886e-8eba-4465-8443-d22f90d269f8"
}

Response

Successful Response

Example response

{
  "header": {
    "error_desc": "success"
  },
  "body": {
    "cardToken": "895b81a9d7d16a81eea58dfe311b8f190437399de7c53417ce120ccbc3258980"
  }
}