SERVICE_PAYMENT_METHODS_REMOVED
{
"type" : "object",
"description": "Data used for SERVICE_PAYMENT_METHODS_ADDED and SERVICE_PAYMENT_METHODS_REMOVED",
"properties" : {
"contactId" : {
"type" : "integer"
},
"csn" : {
"type" : "string"
},
"customerId" : {
"type" : "string"
},
"externalUniqueIdentifier" : {
"type" : "string"
},
"username" : {
"type" : "string"
},
"email" : {
"type" : "string"
},
"title" : {
"type" : "string"
},
"firstName" : {
"type" : "string"
},
"lastName" : {
"type" : "string"
},
"dateOfBirth" : {
"type" : "string",
"format" : "date-time"
},
"countryCode" : {
"type" : "string"
},
"postCode" : {
"type" : "string"
},
"consents" : {
"type" : "object",
"properties" : {
"contactMethods" : {
"type" : "array",
"items" : {
"type" : "string"
}
},
"consentPrefs" : {
"type" : "array",
"items" : {
"type" : "string"
}
}
}
},
"customAttributes" : {
"type" : "array",
"items" : {
"type" : "object",
"properties" : {
"name" : {
"type" : "string"
},
"value" : {
"type" : "string"
}
}
}
},
"referAFriend" : {
"type" : "object",
"properties" : {
"code" : {
"type" : "string"
},
"active" : {
"type" : "boolean"
}
}
},
"paymentProvider" : {
"type" : "string"
},
"paymentType" : {
"type" : "string"
},
"dateAdded" : {
"type" : "string",
"format" : "date-time"
},
"expiryDate" : {
"type" : "string",
"format" : "date-time"
},
"maskedPAN" : {
"type" : "string"
}
},
"required": ["customerId", "username", "email", "title", "firstName", "lastName", "countryCode", "consents", "paymentProvider", "dateAdded"]
}
Updated 10 months ago