Properties
| Name | Type | Description |
|---|---|---|
| creationDate | string | The date when the recurring details were created. |
| details | array | Payment details stored for recurring payments. |
| lastKnownShopperEmail | string | The most recent email for this shopper (if available). |
| shopperReference | string | The reference you use to uniquely identify the shopper (e.g. user ID or account ID). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RecurringDetailsResult",
"title": "RecurringDetailsResult",
"properties": {
"creationDate": {
"description": "The date when the recurring details were created.",
"format": "date-time",
"type": "string"
},
"details": {
"description": "Payment details stored for recurring payments.",
"items": {
"$ref": "#/components/schemas/RecurringDetailWrapper"
},
"type": "array"
},
"lastKnownShopperEmail": {
"description": "The most recent email for this shopper (if available).",
"type": "string"
},
"shopperReference": {
"description": "The reference you use to uniquely identify the shopper (e.g. user ID or account ID).",
"type": "string"
}
},
"type": "object"
}