When adding (a) contact(s) to your smart groups by a JSON request, it is also possible to add a meeting to this format. Ratecard can then recognize the appointment and you connect this information to an event-based campaign.
That way, it is possible to send a feedback request right after a meeting with your contact(s).
Fill in the date and time of the meeting as follows:
"DTSTART": "TZID=Timezone:YYYYMMDDTHHMMSS"
"DTEND": "TZID=Timezone:YYYYMMDDTHHMMSS"
YYYY = Year
MM = Month
DD = Day
T
HH = Hour
MM = Minute(s)
SS = Second(s)
Parameter example start/end date and time
An example of a meeting in Amsterdam at May 10th 2018, from 12 PM until 1 PM will then look like this in JSON format:
"DTSTART": "TZID=Europe/Amsterdam:20180510T120000"
"DTEND": "TZID=Europe/Amsterdam:20180510T130000"
Example of complete JSON request with meeting parameters
An example of an email with an added meeting:
beginratecard
[
{
"firstname": "Robbie",
"lastname": "Sakkers",
"phone": "+31622737770",
"email": "robbie@ratecard.io",
"DTSTART": "TZID=Europe/Amsterdam:20180510T120000",
"DTEND": "TZID=Europe/Amsterdam:20180510T130000"
}
]
endratecard
If you need more information on the JSON request format, parameters we can process and their definitions, and how to test your implementation, you can read our article on how to add contacts via a JSON request within your email body.
Comments
0 comments
Please sign in to leave a comment.