非接触式(Contactless)配置
启用或禁用非接触式(contactless)支付功能,用于线下当面支付。
要启用或禁用卡片的非接触式支付功能,卡片状态必须为有效或临时封锁类型。(有关状态类型的详细信息,请参阅此处)
Request
ENDPOINT
/wallet/WALLET_KEY/card/CARD_KEY/contactlessMÉTODO
PATCH路径参数
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
WALLET_KEY * | string | 钱包识别密钥。 | uuid |
CARD_KEY * | string | 卡片识别密钥。 | uuid |
Request Body
{
"contactless_enabled": false
}
请求体参数
| 字段 | 类型 | 描述 | 字符数 |
|---|---|---|---|
contactless_enabled * | Boolean | 指示是否已启用。 | true/false |
Response
STATUS SUCCESS
200Response Body
{
"card_key": "05fd3654-1f5d-479d-ade5-64239fdf214d",
"status": "active",
"account_key": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"program_key": "6b6ebaac-043b-4390-8d62-e8098ec901e9",
"type": "virtual",
"card_name": "ecommerce",
"printed_name": "Aurora Catarina",
"brand": "visa",
"last_four_digits": "5695",
"created_at": "2023-02-20T19:28:16Z",
"updated_at": "2023-02-22T19:28:16Z",
"cvv_rotation_interval_hours": 72
}
错误
STATUS
4XXResponse Body
{
"title": "Bad Request",
"description": "We're sorry, but the card could not be update contactless. Please try again later.",
"translation": "Unexpected error update contactless card",
"code": "CARD000026"
}
| Code | Status code | 描述 |
|---|---|---|
| QIT000001 | 400 | Invalid Json schema. |
| CARD000011 | 404 | It was not possible to fetch the Card for the card_key {card_key}. |
| CARD000023 | 406 | The card type is invalid for this operation. Only plastic cards are allowed. |
| CARD000026 | 400 | We're sorry, but the card could not be update contactless. Please try again later. |
| CARD000025 | 406 | The status {status} is invalid for the operation. |