Session Attendance
the session attendance endpoint sends a person's participation in a session, linking a person to a session its endpoint is served at /updates/api/{endpoint uuid}/session participation 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 at send time every field here is plain text, so every tag stays quoted this record links a person to a session the session is identified by session id and session organisation uid ; the person by event person id and person organisation uid attended uses the <\<tag|true\ true,false\ false>> form and renders as the strings "true" and "false" sample mapping { "resource id" "<\<resource id>>", "session id" "<\<session id>>", "session organisation uid" "<\<session organisation uid>>", "event person id" "<\<event person id>>", "person organisation uid" "<\<person organisation uid>>", "attended" "<\<attended|true\ true,false\ false>>", "updated at" "<\<updated at>>", "created at" "<\<created at>>" } sample output one rendered participation record from the array the endpoint returns { "resource id" "your instance/session participation/2", "session id" "your instance/session/1286", "session organisation uid" "3b9c1f7a 2d84 4c11 9f0e 7a1b2c3d4e5f", "event person id" "your instance/event person/4676", "person organisation uid" "8297d773 016c 4423 8133 7f1edc158898", "attended" "true", "updated at" "2026 06 01t05 35 33 000000z", "created at" "2026 06 01t05 35 33 000000z" } field reference key merge tag emits resource id <\<resource id>> text the participation record's resource id session id <\<session id>> text the linked session's resource id session organisation uid <\<session organisation uid>> text your own identifier for the session event person id <\<event person id>> text the linked person's resource id person organisation uid <\<person organisation uid>> text your own identifier for the person attended <\<attended| >> text "true" or "false" updated at <\<updated at>> text iso 8601 timestamp created at <\<created at>> text iso 8601 timestamp