Skip to content

Commit 947def9

Browse files
Andra MircioiuAndra Mircioiu
authored andcommitted
add tables with descriptions
1 parent ba1b1d0 commit 947def9

File tree

2 files changed

+42
-29
lines changed

2 files changed

+42
-29
lines changed

content/minfraud/api-documentation/requests.md

Lines changed: 34 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -279,19 +279,24 @@ transaction.
279279
{{< minfraud-schema-row key="type" type="request" valueType="string" valueTypeNote="format: enum" >}}
280280
The type of event being scored. The valid types are:
281281

282-
* `account_creation`
283-
* `account_login`
284-
* `credit_application`
285-
* `email_change`
286-
* `fund_transfer`
287-
* `password_reset`
288-
* `payout_change`
289-
* `purchase`
290-
* `recurring_purchase`
291-
* `referral`
292-
* `sim_swap`
293-
* `survey`
294-
282+
The payment method associated with the transaction. The valid values are:
283+
| Transaction type | Description |
284+
| ---------------------------- | ------------------------------------------------------------------------------------------------------ |
285+
| `account_creation` | The transactor is attempting to create an account in your system. |
286+
| `account_login` | The transactor is attempting to log in to an account in your system. |
287+
| `credit_application` | The transactor is attempting to submit an application for credit. |
288+
| `email_change` | The transactor is attempting to change the email address associated with their account in your system. |
289+
| `fund_transfer` | The transactor is attempting to transfer funds from one account to another. |
290+
| `password_reset` | The transactor is attempting to reset their password in your system. |
291+
| `payout_change` | The transactor is attempting to change how they will be paid in your system.
292+
293+
The transactor may be sending you referral traffic or complete surveys, but this transaction type can be used in any circumstance in which you pay your users, and they are attempting to change how they are paid. |
294+
| `purchase` | The transactor is attempting to make a purchase. |
295+
| `recurring_purchase` | The transactor is attempting to set up a recurring purchase or subscription. |
296+
| `referral` | The transactor is sending you referral traffic, for example referring someone to an e-commerce site with an ad. |
297+
| `sim_swap` | For mobile network operators. A new SIM card or eSIM is being issued to activate service on a customer's existing phone number. |
298+
| `survey` | The transactor is attempting to begin or complete a survey. |
299+
295300
[Learn more about the /event/type input on our Knowledge Base.](https://support.maxmind.com/knowledge-base/articles/event-and-account-inputs-minfraud#transaction-identifier)
296301
{{</minfraud-schema-row>}}
297302

@@ -546,17 +551,23 @@ process that was used for the event.
546551
{{< schema-table key="payment" >}}
547552
{{< minfraud-schema-row key="method" type="request" valueType="string" valueTypeNote="format: enum" >}}
548553
The payment method associated with the transaction. The valid values are:
554+
| Payment method | Description |
555+
| ---------------------------- | ------------------------------------------------------------------------------------------------------ |
556+
| `bank_debit` | A direct debit of the customer's bank account. |
557+
| `bank_redirect` | The customer authorizes payment after authentication via their bank. |
558+
| `bank_transfer` | The customer pushes funds directly from their bank account. |
559+
| `buy_now_pay_later` |Payment via a buy now, pay later provider (e.g. Affirm, Afterpay, Klarna, etc.). |
560+
| `card` | Payment by card, such as a credit, debit, or charge card. |
561+
| `crypto` | Payment via a cryptocurrency. |
562+
| `digital_wallet` | Payment from a digital wallet linked to a card or bank account (e.g. Apple Pay, Google Pay, PayPal, etc.). |
563+
| `gift_card` | Payment via a merchant sponsored gift card. |
564+
| `real_time_payment` | The customer pushes funds directly from their bank account or other funding source using an intermediary to authenticate, such as a phone number or other account (e.g. Pix, PayNow, Swish, etc.). |
565+
| `rewards` | Payment via rewards or loyalty program incentives. |
566+
567+
[Learn more about event and account inputs on our Knowledge Base.](https://support.maxmind.com/knowledge-base/articles/event-and-account-inputs-minfraud)
568+
569+
549570

550-
* `bank_debit`
551-
* `bank_redirect`
552-
* `bank_transfer`
553-
* `buy_now_pay_later`
554-
* `card`
555-
* `crypto`
556-
* `digital_wallet`
557-
* `gift_card`
558-
* `real_time_payment`
559-
* `rewards`
560571
{{</minfraud-schema-row>}}
561572

562573
{{< minfraud-schema-row key="processor" type="request" valueType="string" valueTypeNote="format: enum" >}}

content/minfraud/api-documentation/responses.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -993,12 +993,14 @@ minFraud response.
993993
{{< minfraud-schema-row key="status" type="response" valueType="string" insights="true" factors="true" >}}
994994
A classification of the status of the domain (or the last domain visited after following redirects, if these are present and can be followed) based on an automated visit at a previous point in time. This field may be initially unavailable for a newly sighted domain and populated at a future time after a visit is conducted. Pair with the `/email/domain/visit/last_visited_on` to determine the recency of the visit. One of the following values. Additional values may be added in the future.
995995

996-
* `live` - the domain is reachable and serving content normally
997-
* `dns_error` - the domain is missing, expired, or DNS is misconfigured
998-
* `network_error` - the domain is offline, blocked, or unreachable
999-
* `http_error` - the domain is reachable but the web application had a problem or denied the request
1000-
* `parked` - the domain is reachable and is in a parked state
1001-
* `pre_development` - the domain is reachable and is in a pre-development state
996+
| Status | Description |
997+
| ---------------------------- | ------------------------------------------------------------------------------------------------------ |
998+
| `live` | The domain is reachable and serving content normally. |
999+
| `dns_error` | The domain is missing, expired, or DNS is misconfigured. |
1000+
| `network_error` | The domain is offline, blocked, or unreachable. |
1001+
| `http_error` | The domain is reachable but the web application had a problem or denied the request. |
1002+
| `parked` | The domain is live and is in a parked state. |
1003+
| `pre_development` | The domain is live and is in a pre-development state. |
10021004

10031005
[Learn more about the email domain visit status on our Knowledge Base.](https://support.maxmind.com/knowledge-base/minfraud-domain-risk-data#domain-visit)
10041006
{{</minfraud-schema-row>}}

0 commit comments

Comments
 (0)