People
the people endpoint sends people out of your event their identifiers, contact details, custom fields, and categories its endpoint is served at /updates/api/{endpoint uuid}/event people 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 person at send time two keys carry json values rather than text, so their tags sit without quotes custom fields and categories everything else is plain text and stays quoted cancelled and checked in use the <\<tag|true\ true,false\ false>> form they render as the strings "true" and "false" sample mapping { "event id" "<\<event id>>", "resource id" "<\<resource id>>", "organisation uid" "<\<organisation uid>>", "first name" "<\<first name>>", "last name" "<\<last name>>", "email" "<\<email>>", "phone" "<\<mobile>>", "company" "<\<company>>", "job title" "<\<job title>>", "cancelled" "<\<cancelled|true\ true,false\ false>>", "checked in" "<\<badge printed|true\ true,false\ false>>", "import type" "<\<import type>>", "updated at" "<\<updated at>>", "created at" "<\<created at>>", "custom fields" <\<custom fields list|format\ json>>, "categories" <\<categories list|format\ json,category id label\ id,category name label\ name,has category label\ status,true\ applied,false\ not applied>> } sample output one rendered person from the array the endpoint returns { "event id" "your instance/event/3365", "resource id" "your instance/event person/4676", "organisation uid" "15f04804 9781 35b7 b3f8 cf063c1da67a", "first name" "ada", "last name" "lovelace", "email" "ada\@example com", "phone" "+61400000000", "company" "analytical engines", "job title" "mathematician", "cancelled" "false", "checked in" "true", "import type" "import", "updated at" "2026 05 15t08 40 35 000000z", "created at" "2026 04 10t07 43 13 000000z", "custom fields" { "dietary" "vegetarian", "t shirt size" "m" }, "categories" \[ { "id" "your instance/category/1", "name" "delegate", "status" "applied" }, { "id" "your instance/category/2", "name" "speaker", "status" "not applied" } ] } field reference key merge tag emits event id <\<event id>> text the event's resource id resource id <\<resource id>> text the person's resource id organisation uid <\<organisation uid>> text your own identifier for the person first name <\<first name>> text last name <\<last name>> text email <\<email>> text phone <\<mobile>> text mobile number company <\<company>> text job title <\<job title>> text cancelled <\<cancelled| >> text "true" or "false" checked in <\<badge printed| >> text "true" or "false" import type <\<import type>> text how the person entered the event updated at <\<updated at>> text iso 8601 timestamp created at <\<created at>> text iso 8601 timestamp custom fields <\<custom fields list|format\ json>> json object of the person's custom fields unquoted in the template categories <\<categories list| >> json array of the event's categories, each with an applied / not applied status unquoted in the template