Add indicators to the fraud list
POST
/v1/fraud-list
const url = 'https://api.fromenance.com/v1/fraud-list';const options = { method: 'POST', headers: { cookie: 'fromenance.session_token=<fromenance.session_token>', 'Content-Type': 'application/json' }, body: '{"items":[{"kind":"url","value":"example","note":"example"}]}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations”Request Body
Section titled “Request Body”Media typeapplication/json
object
items
required
Array<object>
object
kind
required
string
value
required
string
note
string
Responses
Section titled “ Responses ”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" } ]}