Update fraud rule
curl --request PUT \
--url https://api.txcloud.io/v1/fraud/rules/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"condition": "<string>",
"description": "<string>",
"score_adjustment": 123,
"enabled": true
}
'Rules
Update fraud rule
PUT
/
fraud
/
rules
/
{id}
Update fraud rule
curl --request PUT \
--url https://api.txcloud.io/v1/fraud/rules/{id} \
--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.
Path Parameters
Body
application/json
Response
200
Rule updated
⌘I