Question
Is it feasible to have address status code as either verified or not verified address only and should not have a Partial Verified address?
Answer
In Cleanse Configuration you have to make use of the "verificationStatusMapping" parameter to define address verification status and use only required parameters and skip others.
{
"cleanse":[
{
"cleanseFunction":"Loqate",
"options":{
"loqateKey":"2ebdcf4ae28ff15c3dc7ba6dc3d465125b1c38e0",
"ovOnly":"true",
"verificationStatusMapping":{
"Verified":[
"V.*"
],
"Partially Verified":[
"P.*"
],
"Unverified":[
"U.*"
],
"Ambiguous":[
"A.*"
],
"Conflict":[
"C.*"
],
"Reverted":[
"R.*"
]
}
}
}
]
}
Refer to the documentation link below for information on address status codes:
References
https://docs.reltio.com/datacleanse/loqateavc.html
Comments
Please sign in to leave a comment.