Create fraud rule
curl --request POST \
--url https://api.txcloud.io/v1/fraud/rules \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"condition": "<string>",
"description": "<string>",
"score_adjustment": 123,
"enabled": true
}
'Rules
Create fraud rule
POST
/
fraud
/
rules
Create fraud rule
curl --request POST \
--url https://api.txcloud.io/v1/fraud/rules \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"condition": "<string>",
"description": "<string>",
"score_adjustment": 123,
"enabled": true
}
'Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Response
201
Rule created
⌘I