# AI告诉企业财务主管SWIFT GPI覆盖所有跨境支付类型，忽略覆盖支付（MT202 COV）有不同的追踪方式

- **ID:** `banking/swift-gpi-cover-payment`
- **领域:** banking
- **类别:** protocol_error
- **错误码:** `SWIFT_GPI_COV_ERR`
- **验证级别:** ai_generated
- **修复率:** 80%

## 根因

SWIFT GPI追踪专为客户信用转账（MT103）设计；覆盖支付（MT202 COV）使用独立追踪机制，可能无法在GPI追踪器中显示。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| SWIFT GPI version 1.0 (2017) | active | — | — |
| MT202 COV message type (ISO 15022) | active | — | — |
| UETR standard (ISO 20022) | active | — | — |

## 解决方案

1. ```
   Use the UETR (Unique End-to-end Transaction Reference) from the MT202 COV message to query the bank's proprietary tracking portal. Example: `curl -X POST https://bank-api.com/track -H 'Authorization: Bearer token' -d '{"UETR": "12345678-ABCD-EFGH-IJKL-1234567890"}'`
   ```
2. ```
   Request the correspondent bank to provide GPI tracking for MT202 COV by enabling the 'GPI Cover Payment' flag in SWIFT message
   ```
3. ```
   Use a third-party SWIFT tracking aggregator (e.g., Finastra) that supports both MT103 and MT202 COV
   ```

## 无效尝试

- **** — GPI Tracker only ingests MT103 messages; MT202 COV requires separate UETR lookup via the bank's proprietary system. (95% 失败率)
- **** — Each payment type generates a unique UETR; sharing UETRs violates SWIFT message standards. (85% 失败率)
- **** — GPI Tracker requires all banks in the chain to be GPI members; non-members don't provide tracking data. (75% 失败率)
