SubscriberSync

A subscriber record to sync state back to Ticketmatic

Fields

FieldDescription
email
string 
(required)

Subscriber e-mail

Example value:"info@test.com"
firstname
string

Subscriber first name

Example value:"John"
lastname
string

Subscriber last name

Example value:"Johnson"
oldemail
string

Previous value of the email field, to indicate a changed e-mail address.

Used to find the correct contact. The normal email field will be used when this field is ommitted or empty.

Example value:"info@test.com"
subscribed
bool 
(required)

Whether or not the subscriber is still subscribed

Example value:true

Example

1{
2    "email": "info@test.com",
3    "firstname": "John",
4    "lastname": "Johnson",
5    "oldemail": "info@test.com",
6    "subscribed": true
7}