Enroll Card in 3DSecure Service
POSThttps://pay.fondy.eu/api/3dsecure_step1
This endpoint enables PCIDSS-compliant merchants to enroll a card in the 3DSecure service. By enrolling the card, the merchant initiates the 3DSecure verification process, adding an extra layer of authentication for online purchases. This service is only available to merchants who comply with PCI DSS (Payment Card Industry Data Security Standard) requirements.
Request
Responses
- 200
Card enrolled in 3DSecure service
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://pay.fondy.eu/api/3dsecure_step1");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"request\": {\n \"order_id\": \"ORDER_12345678\",\n \"merchant_id\": 1,\n \"order_desc\": \"Hotel booking №1234 Antalia Resort\",\n \"signature\": \"1773cf135bd89656131134b98637894dad42f808\",\n \"amount\": 1020,\n \"currency\": \"AED\",\n \"card_number\": \"string\",\n \"cvv2\": \"string\",\n \"expiry_date\": \"string\",\n \"client_ip\": \"string\",\n \"version\": \"1.0.1\",\n \"server_callback_url\": \"http://site.com/callbackurl\",\n \"lifetime\": 600,\n \"merchant_data\": \"string\",\n \"preauth\": \"N\",\n \"sender_email\": \"string\",\n \"descriptor\": \"string\",\n \"lang\": \"en\",\n \"product_id\": \"string\",\n \"verification\": \"N\",\n \"container\": \"ewogICJhcGlWZXJzaW9uTWlub3IiOiAwLAogICJhcGlWZXJzaW9uIjogMiw...\"\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear