Skip to content

Complete

posthttps://api.tranzila.com/v1/transaction/credit_card/3ds/complete

After the user complete the challenge, the result would be sent to the address was sent via the url prameter in the auth_3ds_redirect (including params)

Request

Body

application/json
track_idstring
terminal_namestring

Responses

The response can be 200 with an Application error code:

Error CodeDescription
900Transaction failed during 3D Secure validation

Response body

response.json
JSON
1{
2  "error_code": 0,
3  "message": "Success",
4  "transaction_result": {
5    "processor_response_code": "000",
6    "transaction_id": "372803",
7    "auth_number": "1",
8    "card_type": "2",
9    "card_type_name": "Visa",
10    "amount": 10,
11    "currency_code": "ILS",
12    "expiry_month": 9,
13    "expiry_year": "25",
14    "payment_plan": "1",
15    "token": "Q823424234234dfsgdf029",
16    "last_4": "1029",
17    "card_mask": "458097******1029",
18    "card_locality": "domestic"
19  },
20  "t3ds_data": {
21    "version": "1.0",
22    "statusCode": "YA",
23    "statusMessage": "Authenticated successfully.",
24    "xid": "ZjI3YTM0OTJlODBmNGQ3OTkyNjU=",
25    "cavv": "AAABB5AHkVcWB4FkdAeREcBzVec=",
26    "eci": "05"
27  },
28  "original_request": {
29    "terminal_name": " yourTerminalName ",
30    "txn_currency_code": "ILS",
31    "txn_type": "debit",
32    "card_number": "458097******1029",
33    "expire_month": 9,
34    "expire_year": 2025,
35    "cvv": "***",
36    "card_holder_id": "032242711",
37    "payment_plan": 1,
38    "client": {
39      "email": "test@interspace.net",
40      "address_line_1": "habrushim 33",
41      "address_line_2": "pob 2252"
42    },
43    "items": [
44      {
45        "code": "5555",
46        "name": "חולצה",
47        "unit_price": 10,
48        "type": "I",
49        "units_number": 1,
50        "unit_type": 1,
51        "price_type": "G",
52        "currency_code": "ILS",
53        "to_txn_currency_exchange_rate": 1,
54        "attributes": [
55          {
56            "language": "hebrew",
57            "name": "attribute name",
58            "value": "attribute value"
59          }
60        ]
61      }
62    ],
63    "response_language": "english",
64    "user_defined_fields": [
65      {
66        "name": "company",
67        "value": "test 222"
68      }
69    ],
70    "3ds_settings": {
71      "browser": {
72        "java_enabled": 0,
73        "language": "en-gb",
74        "color_depth": 24,
75        "screen_height": 934,
76        "screen_width": 1255,
77        "time_zone": 5,
78        "window_size": "04"
79      }
80    },
81    "force_txn_on_3ds_fail": "N",
82    "auth_3ds_redirect": {
83      "url": "https://test.com",
84      "params": [
85        {
86          "key": "test",
87          "value": "test"
88        },
89        {
90          "key": "ttr",
91          "value": "322"
92        }
93      ]
94    },
95    "sto": "N",
96    "pan_entry_mode": "50"
97  }
98}
99
Was this page helpful?