Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • financial transaction - with card verification and following payment;
  • registration transaction - with card verification without a following payment.

...

The One Click service allows a regular customer of a merchant to make new purchases without entering card data. The payment requires only confirmation by the CVC2 code. However, for subsequent operations CIT COF with a saved card, CVC2 will usually not be requested (except the cases where special settings are made at the request of the merchant).

...

To access the web service send a request using the POST method to the request URL https://<SERVER_NAME>/pay/oneclick/v1/rem_token.cfm  with parameters in JSON format.

List of request parameters:

Parameter

Mandatory field

Adopted values

Default value

Description

Merchant

Merchant_ID

Yes

Number


The enterprise identifier in IPS Assist

Login

Yes

20 characters


Web service user login

Password

Yes

30 characters


Web service user password

CustomerNumber*

Yes

32 characters


Merchant's internal customer identification

Language

No

RU - Russian,

EN - English

Language of legal entity/enterprise

Language of authorized pages

Token

Yes

36 characters


Token of stored card

*The parameter is automatically validated according to the rules.

An example of request:

Code Block
languagexml
POST https://<SERVER-NAME>/pay/oneclick/v1/rem_token.cfm
POST data:{"merchant":{"merchant_id":"452739","login":"LOGIN", "password":"PASSWORD"}, "token": "54F5A3DE-4B47-4B40-03B5-7FF992D6B401", "language": "RU", "customernumber":"1234"}

The request result is sent in JSON format with the message «Token is remowed».

Example of the response:

Code Block
languagexml
{"message":"Token 33479991-B4E5-40FE-D9ED-EDC94BA7FA14 is removed"}

In case of an error, the service returns the error data in JSON format.

{"fault":{"detail":"<error message>","faultcode":<first tcode>,"faultstring":<second code >}}.

Back on top