Verifone · Schema
StoredCredentialDto
StoredCredentialDto from Verifone eCommerce API
PaymentsPOSTerminal ManagementeCommerceFinTechPayment ProcessingOmnichannel
Properties
| Name | Type | Description |
|---|---|---|
| stored_credential_type | string | The definition of a stored credential payment. |
| processing_model_details | object | |
| first_payment | boolean | Whether auto-capture or not. Setting this to 'false' will only authorize the transaction. |
| scheme_reference | string | Scheme Reference Data returned in the initial transaction |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/verifone/refs/heads/main/json-schema/ecommerce-api-storedcredentialdto.json",
"title": "StoredCredentialDto",
"description": "StoredCredentialDto from Verifone eCommerce API",
"type": "object",
"properties": {
"stored_credential_type": {
"type": "string",
"enum": [
"SIGNUP",
"CHARGE"
],
"description": "The definition of a stored credential payment."
},
"processing_model_details": {
"allOf": [
{
"$ref": "#/components/schemas/ProcessingModelDetailsDto"
}
]
},
"first_payment": {
"type": "boolean",
"description": "Whether auto-capture or not. Setting this to 'false' will only authorize the transaction."
},
"scheme_reference": {
"type": "string",
"description": "Scheme Reference Data returned in the initial transaction"
}
},
"required": [
"stored_credential_type",
"processing_model_details"
]
}