Sessions
the sessions endpoint sends a session out of your event its endpoint is served at /updates/api/{endpoint uuid}/sessions how it works the template is the shape of the payload you want out each key is yours to name; the merge tag on the right supplies the value for each session at send time every field here is plain text, so every tag stays quoted active and archived use the <\<tag|true\ true,false\ false>> form they render as the strings "true" and "false" sample mapping { "event id" "<\<event id>>", "event name" "<\<event name>>", "resource id" "<\<resource id>>", "organisation uid" "<\<organisation uid>>", "code" "<\<code>>", "name" "<\<name>>", "description" "<\<description>>", "capacity" "<\<capacity>>", "start time" "<\<start time>>", "finish time" "<\<finish time>>", "location name" "<\<location name>>", "active" "<\<active|true\ true,false\ false>>", "archived" "<\<archived|true\ true,false\ false>>", "updated at" "<\<updated at>>", "created at" "<\<created at>>" } sample output one rendered session from the array the endpoint returns { "event id" "your instance/event/3365", "event name" "platform summit 2026", "resource id" "your instance/session/1287", "organisation uid" "5f7c9721 ee02 45f7 b0e2 89a1da1dcdbb", "code" "ses 001", "name" "building on the platform api", "description" "a hands on walkthrough for developers ", "capacity" "120", "start time" "2026 05 14t22 00 00 000000z", "finish time" "2026 05 14t23 30 00 000000z", "location name" "room 5", "active" "true", "archived" "false", "updated at" "2026 06 15t08 18 09 000000z", "created at" "2026 04 10t23 35 50 000000z" } field reference key merge tag emits event id <\<event id>> text the event's resource id event name <\<event name>> text the event's name resource id <\<resource id>> text the session's resource id organisation uid <\<organisation uid>> text your own identifier for the session code <\<code>> text short session code name <\<name>> text the session title description <\<description>> text the session description capacity <\<capacity>> text maximum attendees start time <\<start time>> text iso 8601 timestamp finish time <\<finish time>> text iso 8601 timestamp location name <\<location name>> text the session's location active <\<active| >> text "true" or "false" archived <\<archived| >> text "true" or "false" updated at <\<updated at>> text iso 8601 timestamp created at <\<created at>> text iso 8601 timestamp