Exclude User from Rule API

Created for highly API-dependent integrations, this API allows you to exclude specific users from the effects of a certain custom rule.

Good to know

  • Use the Rule ID to define which rule should not be applied to the selected user.
  • Identify the users with their user ID, email address, card hash, or IP address.
  • Use POST requests to exclude users from rules and DELETE requests to reverse the exclusion.
  • All SEON API requests are case-sensitive. Please follow the formatting below to avoid errors.

Request

 

Request Attributes

TypeRequired
rule_id
integeryes
field
stringyes
value
stringyes
expiration
stringno

HTTP Endpoint

POST

https://api.seon.io/SeonRestService/fraud-api/rule-exclude/v1
PHP
Generic
Generic

Response

The endpoint returns JSON structured response.

JSON Attributes

Type
data
object
error
object
success
boolean
Response
{
 "data": {},
 "error": {},
 "success": true
}

Delete request

 

Request Attributes

TypeRequired
rule_id
integeryes
field
stringyes
value
stringyes

HTTP Endpoint

DELETE

https://api.seon.io/SeonRestService/fraud-api/rule-exclude/v1
PHP
Generic
Generic

Delete response

The endpoint returns JSON structured response.

JSON Attributes

Type
data
object
error
object
success
boolean
Response
{
 "data": {},
 "error": {},
 "success": true
}