Skip to main content
POST
/
fraud
/
signals
Report fraud signal
curl --request POST \
  --url https://api.txcloud.io/v1/fraud/signals \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "type": "<string>",
  "severity": "low",
  "description": "<string>",
  "verification_id": "<string>",
  "user_id": "<string>"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
type
string
required
severity
enum<string>
required
Available options:
low,
medium,
high,
critical
description
string
required
verification_id
string
user_id
string

Response

201

Signal reported