Skip to content

Commit 19a0960

Browse files
authored
Merge pull request #171 from maxmind/greg/eng-3457-minfraud-api-ruby-add-email-domain-outputs
Add new domain outputs
2 parents a0c0af6 + e81a284 commit 19a0960

File tree

8 files changed

+571
-2
lines changed

8 files changed

+571
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ Gemfile.lock
77
.yardoc
88
*~
99
.DS_Store
10+
.claude

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,25 @@
1515
* Added the input `/payment/method`. This is the payment method associated
1616
with the transaction. You may provide this using the `method` attribute
1717
on `Minfraud::Components::Payment`.
18+
* Added support for new email domain outputs on `Minfraud::Model::EmailDomain`:
19+
* `/email/domain/classification` - The domain type (e.g., business,
20+
education, government, isp_email). Available as the `classification`
21+
attribute.
22+
* `/email/domain/risk` - A risk score from 0.01 to 99 for the domain.
23+
Available as the `risk` attribute.
24+
* `/email/domain/volume` - Activity across the minFraud network expressed
25+
as sightings per million. Available as the `volume` attribute.
26+
* `/email/domain/visit` - Information from an automated visit to the
27+
domain. Available as the `visit` attribute, which returns a
28+
`Minfraud::Model::EmailDomainVisit` object.
29+
* Added support for email domain visit outputs on
30+
`Minfraud::Model::EmailDomainVisit`:
31+
* `/email/domain/visit/has_redirect` - Whether the domain redirects to
32+
another URL. Available as the `has_redirect` attribute.
33+
* `/email/domain/visit/last_visited_on` - The date the automated visit
34+
was completed. Available as the `last_visited_on` attribute.
35+
* `/email/domain/visit/status` - The status of the domain (e.g., live,
36+
dns_error, parked). Available as the `status` attribute.
1837

1938
## v2.8.0 (2025-05-23)
2039

0 commit comments

Comments
 (0)