Skip to main content
POST
/
v1
/
dict
/
fraud-markers
/
{fraud_marker_id}
/
cancel
Cancel a Fraud Marker
curl --request POST \
  --url https://plugin-pix-indirect.api.lerian.net/v1/dict/fraud-markers/{fraud_marker_id}/cancel \
  --header 'Authorization: Bearer <token>'
{
  "id": "550e8400-e29b-41d4-a716-44665544f999",
  "document": "12345678901",
  "fraudType": "MULE_ACCOUNT",
  "key": "[email protected]",
  "status": "REGISTERED",
  "createdAt": "2024-01-15T10:30:00Z",
  "updatedAt": "2024-01-15T10:30:00Z"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

fraud_marker_id
string
required

Unique identifier of the fraud marker (UUID format).

Response

Fraud marker cancelled successfully.

id
string

Unique identifier.

Example:

"550e8400-e29b-41d4-a716-44665544f999"

document
string

CPF or CNPJ.

Example:

"12345678901"

fraudType
enum<string>

Type of fraud.

Available options:
APPLICATION_FRAUD,
MULE_ACCOUNT,
SCAMMER_ACCOUNT,
OTHER
Example:

"MULE_ACCOUNT"

key
string

Associated Pix key.

status
enum<string>

Current status.

Available options:
REGISTERED,
CANCELLED
Example:

"REGISTERED"

createdAt
string<date-time>
Example:

"2024-01-15T10:30:00Z"

updatedAt
string<date-time>
Example:

"2024-01-15T10:30:00Z"