Skip to main content

Enroll Card in 3DSecure Service

POST 

https://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

Card enrolled in 3DSecure service

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());
Request Collapse all
Base URL
https://pay.fondy.eu/api
Parameters
— headerrequired
Body
{
  "request": {
    "order_id": "ORDER_12345678",
    "merchant_id": 1,
    "order_desc": "Hotel booking №1234 Antalia Resort",
    "signature": "1773cf135bd89656131134b98637894dad42f808",
    "amount": 1020,
    "currency": "AED",
    "card_number": "string",
    "cvv2": "string",
    "expiry_date": "string",
    "client_ip": "string",
    "version": "1.0.1",
    "server_callback_url": "http://site.com/callbackurl",
    "lifetime": 600,
    "merchant_data": "string",
    "preauth": "N",
    "sender_email": "string",
    "descriptor": "string",
    "lang": "en",
    "product_id": "string",
    "verification": "N",
    "container": "ewogICJhcGlWZXJzaW9uTWlub3IiOiAwLAogICJhcGlWZXJzaW9uIjogMiw..."
  }
}
ResponseClear

Click the Send API Request button above and see the response here!