跳到主要内容

Verification.Revoke

当一个或多个先前通过的验证被撤销时发出,例如由于欺诈活动或供应商报告的错误。data.verifications 数组始终包含至少一个项目,在批量撤销处理时可能包含多个项目。

收到此事件时,您应将引用的验证视为不再有效,并采取适当措施(例如,为受影响的用户重新触发验证)。

字段

字段类型必需说明
eventTypestring始终为 "Verification.Revoke"
dataobject撤销数据
data.verificationsarray被撤销的验证列表(最少1项)
data.verifications[].idstring (UUID)被撤销的验证ID
data.verifications[].reasonstring撤销原因: fraudulent-activity-detectedprovider-reported-error

示例

{
"eventType": "Verification.Revoke",
"data": {
"verifications": [
{
"id": "4e57301e-a4d1-498f-ac3f-f3d4de19abf6",
"reason": "fraudulent-activity-detected"
}
]
}
}