Checks for duplicates
Check for the potential of duplication. Up to 40 items can be submitted in one request
POST
/v1/deduplicate
curl \
-X POST https://api.fraud.ink/v1/deduplicate \
-H "Content-Type: application/json" \
-d '{"user":{"user_id":"string","channel":"string","sub_channel":"string","ip":"string"},"items":[{"project_type":"survey","project_source":"string","project_sub_source":"string","project_id":"string","ext_survey_source":"lucid","ext_survey_id":"string"}]}'
Request examples
{
"user": {
"user_id": "string",
"channel": "string",
"sub_channel": "string",
"ip": "string"
},
"items": [
{
"project_type": "survey",
"project_source": "string",
"project_sub_source": "string",
"project_id": "string",
"ext_survey_source": "lucid",
"ext_survey_id": "string"
}
]
}
Response examples (200)
{
"data": {
"user": {
"user_id": "string",
"channel": "string",
"sub_channel": "string",
"ip": "string"
},
"items": [
{
"project_type": "survey",
"project_source": "string",
"project_sub_source": "string",
"project_id": "string",
"ext_survey_source": "lucid",
"ext_survey_id": "string",
"duplication_potential": 0.85
}
]
}
}