summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMarcin Gębala <maarcin.gebala@gmail.com>2014-09-10 16:10:35 +0200
committerMarcin Gębala <maarcin.gebala@gmail.com>2014-09-10 16:10:35 +0200
commitfb22d5c1cfafec11a0a94475e1be2f54ac8c6d25 (patch)
treeb936997635133129667e217df99ae890feccda2b /doc
parent968f177eee1bfff9ba8712904a34f3fef5e3faa1 (diff)
downloaddjango-payments-taler-fb22d5c1cfafec11a0a94475e1be2f54ac8c6d25.tar.gz
django-payments-taler-fb22d5c1cfafec11a0a94475e1be2f54ac8c6d25.tar.bz2
django-payments-taler-fb22d5c1cfafec11a0a94475e1be2f54ac8c6d25.zip
Describe fraud statuses in Cybersource
Diffstat (limited to 'doc')
-rw-r--r--doc/modules.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/modules.rst b/doc/modules.rst
index 7565e0d..a8caf8c 100644
--- a/doc/modules.rst
+++ b/doc/modules.rst
@@ -82,11 +82,32 @@ Example::
'sandbox': True})}
+Merchant-Defined Data
+"""""""""""""""""""""
+
Cybersource allows you to pass Merchant-Defined Data, which is additional information about the payment or the order, such as an order number, additional customer information, or a special comment or request from the customer. This can be accomplished by passing your data to the :class:`Payment` instance::
>>> payment.attrs.merchant_defined_data = {'01': 'foo', '02': 'bar'}
+Fraud statuses
+""""""""""""""
+
+Cybersource provides services used for fraud detection. When using this gateway, you can check the fraud status of your payment by accessing ``payment.fraud_status`` and ``payment.fraud_message`` fields. The possible fraud statuses are:
+
+``unknown``
+ The fraud status is unknown. This is the default status for other gateways, that do not involve fraud detection.
+
+``accept``
+ Fraud was not detected.
+
+``reject``
+ Fraud service detected some problems with the payment. Inspect the details by accessing the ``payment.fraud_message`` field.
+
+``review``
+ The payment was marked for review.
+
+
Dotpay
------