Update Customer Account
Update Customer in our Booking Platform when any of their details change.
Headers
Request
{
"@context": "https://openactive.io/",
"@type": "CustomerUpdateAction",
"object": { // Includes all properties that are attempted to be updated
"@type": "Person",
"email": "[email protected]",
"telephone": "020 811 8055",
"givenName": "Geoff",
"familyName": "Capes",
"birthDate": "1970-01-01",
"gender": "https://schema.org/Female",
"address": {
"@type": "PostalAddress",
"streetAddress": "Raynes Park High School, 46A West Barnes Lane",
"addressLocality": "New Malden",
"addressRegion": "London",
"postalCode": "NW5 3DU",
"addressCountry": "GB"
},
"emergencyContact": {
"@type": "Person",
"name": "Ralph Capes",
"telephone": "020 811 8055"
}
},
"seller": [
"https://id.bookingsystem.example.com/organizers/1"
]
}seller
Response
Last updated