Properties
| Name | Type | Description |
|---|---|---|
| additionalData | object | This field contains additional data, which may be required for a particular request. The `additionalData` object consists of entries, each of which includes the key and value. |
| brands | array | List of brands. |
| cardNumber | string | Card number or BIN. |
| merchantAccount | string | The merchant account identifier. |
| recurringDetailReference | string | A recurring detail reference corresponding to a card. |
| shopperReference | string | The shopper's reference to uniquely identify this shopper (e.g. user ID or account ID). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ThreeDSAvailabilityRequest",
"title": "ThreeDSAvailabilityRequest",
"properties": {
"additionalData": {
"additionalProperties": {
"type": "string"
},
"description": "This field contains additional data, which may be required for a particular request.\n\nThe `additionalData` object consists of entries, each of which includes the key and value.",
"type": "object"
},
"brands": {
"description": "List of brands.",
"items": {
"type": "string"
},
"type": "array"
},
"cardNumber": {
"description": "Card number or BIN.",
"type": "string"
},
"merchantAccount": {
"description": "The merchant account identifier.",
"type": "string"
},
"recurringDetailReference": {
"description": "A recurring detail reference corresponding to a card.",
"type": "string"
},
"shopperReference": {
"description": "The shopper's reference to uniquely identify this shopper (e.g. user ID or account ID).",
"type": "string"
}
},
"required": [
"merchantAccount"
],
"type": "object"
}