meta { name: 电话明文查看 type: http seq: 1 tags: [ generated ] } get { url: {{baseUrl}}/api/customer/contact/reveal?id=753314905951567872 body: none auth: inherit } params:query { id: 753314905951567872 } docs { # 电话明文查看 `GET /api/customer/contact/reveal`(本行兼作对账钥匙,勿手改) 点击临时显示明文;行为埋点落 customer_contact_reveal_log(谁/何时/哪个联系人/IP,失败自吞不阻塞)。 ## 请求参数 | 参数 | 类型 | 必填 | 默认 | 说明 | | --- | --- | --- | --- | --- | | id | string | 是 | - | 联系人 id(查询参数) | ## 请求示例 请求头:Authorization: Bearer {{token}} GET /api/customer/contact/reveal?id=753314905951567872 ## 响应 data 结构 | 字段 | 类型 | 说明 | | --- | --- | --- | | (data 本体) | string | 手机号明文(13800001003 形态) | ## 错误码 - 67008 联系人入参非法/不存在或不属于该客户 ## 响应示例 // 示例数据(E2E 实测真值),字段结构以上表为准 ```json { "code": 0, "success": true, "message": "success", "data": "13800001003" } ``` }