Properties
| Name | Type | Description |
|---|---|---|
| acsInfoInd | array | Provides additional information to the 3DS Server. Possible values: - 01 (Authentication is available at ACS) - 02 (Attempts supported by ACS or DS) - 03 (Decoupled authentication supported) - 04 (Whi |
| brandCode | string | Card brand. |
| endRange | string | BIN end range. |
| startRange | string | BIN start range. |
| threeDS2Versions | array | Supported 3D Secure protocol versions |
| threeDSMethodURL | string | In a 3D Secure 2 browser-based flow, this is the URL where you should send the device fingerprint to. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ThreeDS2CardRangeDetail",
"title": "ThreeDS2CardRangeDetail",
"properties": {
"acsInfoInd": {
"x-addedInVersion": "51",
"description": "Provides additional information to the 3DS Server.\nPossible values:\n- 01 (Authentication is available at ACS)\n- 02 (Attempts supported by ACS or DS)\n- 03 (Decoupled authentication supported)\n- 04 (Whitelisting supported)",
"items": {
"type": "string"
},
"type": "array"
},
"brandCode": {
"description": "Card brand.",
"type": "string"
},
"endRange": {
"description": "BIN end range.",
"type": "string"
},
"startRange": {
"description": "BIN start range.",
"type": "string"
},
"threeDS2Versions": {
"x-addedInVersion": "53",
"description": "Supported 3D Secure protocol versions",
"items": {
"type": "string"
},
"type": "array"
},
"threeDSMethodURL": {
"description": "In a 3D Secure 2 browser-based flow, this is the URL where you should send the device fingerprint to.",
"type": "string"
}
},
"type": "object"
}