Properties
| Name | Type | Description |
|---|---|---|
| forceErasure | boolean | Set this to **true** if you want to delete shopper-related data, even if the shopper has an existing recurring transaction. This only deletes the shopper-related data for the specific payment, but doe |
| merchantAccount | string | Your merchant account |
| pspReference | string | The PSP reference of the payment. We will delete all shopper-related data for this payment. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SubjectErasureByPspReferenceRequest",
"title": "SubjectErasureByPspReferenceRequest",
"properties": {
"forceErasure": {
"description": "Set this to **true** if you want to delete shopper-related data, even if the shopper has an existing recurring transaction. This only deletes the shopper-related data for the specific payment, but does not cancel the existing recurring transaction.",
"type": "boolean"
},
"merchantAccount": {
"description": "Your merchant account",
"type": "string"
},
"pspReference": {
"description": "The PSP reference of the payment. We will delete all shopper-related data for this payment.",
"type": "string"
}
},
"type": "object"
}