Pix fraud marker registration failure
Pix fraud marker integrity registration failure. The following endpoints generate this event: Create fraud marker. For more information, see the Pix instant payments guide. Also see the Pix payments data events guide.
Type: object
Domain: pix-dict
Event: fraud_marker_registration_failure
Version: 1
id required
Title: ID
Description: Fraud marker ID.
Type: string
Max length: 36
Example:
1fe71b28-a5eb-4d3d-8781-823205c76aa3
idempotency_key required
Title: Idempotency key
Description: Key used to guarantee data Idempotency.
Type: string
Max length: 36
Example:
4140f714-04da-42f4-831e-f46b452f36f2
fraud_type required
Title: Fraud type
Description: Verified fraud type
Type: string
Must be one of the following:
APPLICATION_FRAUD
MULE_ACCOUNT
SCAMMER_ACCOUNT
OTHER
UNKNOWN
Example:
APPLICATION_FRAUD
document_number required
Title: Document Number
Description: A government document number, such as a Social Security number (US) or Cadastro de Pessoas Físicas number (Brazil). Must be numeric with 11-14 digits.
Type: string
Max length: 14
Example:
123412341234
key
Title: Pix key
Description: Key to which the fraud marker will be associated. It must be reported, if known.
Type: string
Example:
string
error_message
Title: Error message.
Description: Error message that occurred during processing in the integrity stream.
Type: string
Example:
Error on provider
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"title": "Pix fraud marker registration failure",
"description": "Pix fraud marker integrity registration failure. The following endpoints generate this event: <a href='https://developers.pismo.io/pismo-docs/reference/post-v2-pix-fraud-marker-create'>Create fraud marker</a>. For more information, see the <a href='https://developers.pismo.io/pismo-docs/docs/pix-instant-payments'>Pix instant payments</a> guide. Also see the <a href='https://developers.pismo.io/pismo-docs/docs/pix-payments-data-events'>Pix payments data events</a> guide.",
"required": [
"id",
"idempotency_key",
"fraud_type",
"document_number"
],
"properties": {
"id": {
"type": "string",
"title": "ID",
"description": "Fraud marker ID.",
"maxLength": 36,
"examples": [
"1fe71b28-a5eb-4d3d-8781-823205c76aa3"
]
},
"idempotency_key": {
"type": "string",
"title": "Idempotency key",
"description": "Key used to guarantee data Idempotency.",
"maxLength": 36,
"examples": [
"4140f714-04da-42f4-831e-f46b452f36f2"
]
},
"fraud_type": {
"type": "string",
"title": "Fraud type",
"description": "Verified fraud type",
"enum": [
"APPLICATION_FRAUD",
"MULE_ACCOUNT",
"SCAMMER_ACCOUNT",
"OTHER",
"UNKNOWN"
],
"examples": [
"APPLICATION_FRAUD"
]
},
"document_number": {
"type": "string",
"title": "Document Number",
"description": "A government document number, such as a Social Security number (US) or Cadastro de Pessoas F\u00edsicas number (Brazil). Must be numeric with 11-14 digits.",
"maxLength": 14,
"example": "123412341234"
},
"key": {
"type": "string",
"title": "Pix key",
"description": "Key to which the fraud marker will be associated. It must be reported, if known.",
"example": "string"
},
"error_message": {
"type": "string",
"title": "Error message.",
"description": "Error message that occurred during processing in the integrity stream.",
"examples": [
"Error on provider"
]
}
}
}
{
"id": "1fe71b28-a5eb-4d3d-8781-823205c76aa3",
"idempotency_key": "4140f714-04da-42f4-831e-f46b452f36f2",
"fraud_type": "APPLICATION_FRAUD",
"document_number": "123412341234",
"key": "string",
"error_message": "Error on provider"
}
Updated 21 days ago