Skip to content

Add indicators to the fraud list

POST
/v1/fraud-list
curl --request POST \
--url https://api.fromenance.com/v1/fraud-list \
--header 'Content-Type: application/json' \
--cookie fromenance.session_token=<fromenance.session_token> \
--data '{ "items": [ { "kind": "url", "value": "example", "note": "example" } ] }'

Entries come only from analyst action; nothing is added automatically from a single submission.

Media typeapplication/json
object
items
required
Array<object>
>= 1 items <= 500 items
object
kind
required
string
Allowed values: url domain email phone ip
value
required
string
>= 2 characters <= 2000 characters
note
string
<= 500 characters

Added

Media typeapplication/json
object
added
required
integer
data
required
Array<object>
object
id
required
string
kind
required
string
value
required
string
source
required
string
added_by
required
string | null
note
required
string | null
submission_id
required
string | null
created_at
required
string
Examplegenerated
{
"added": 1,
"data": [
{
"id": "example",
"kind": "example",
"value": "example",
"source": "example",
"added_by": "example",
"note": "example",
"submission_id": "example",
"created_at": "example"
}
]
}