Vendors
the vendors endpoint sends a vendor out of your event its endpoint is served at /updates/api/{endpoint uuid}/vendors 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 vendor at send time every field here is plain text, so every tag stays quoted active and deleted 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>>", "name" "<\<name>>", "description" "<\<description>>", "active" "<\<active|true\ true,false\ false>>", "deleted" "<\<deleted|true\ true,false\ false>>", "updated at" "<\<updated at>>", "created at" "<\<created at>>" } sample output one rendered vendor from the array the endpoint returns { "event id" "your instance/event/3365", "event name" "platform summit 2026", "resource id" "your instance/vendor/895", "organisation uid" "a1s2d3f4g5h6j7k8", "name" "acme corp", "description" "enterprise hardware and support ", "active" "true", "deleted" "false", "updated at" "2026 05 26t08 07 07 000000z", "created at" "2026 04 10t09 00 18 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 vendor's resource id organisation uid <\<organisation uid>> text your own identifier for the vendor name <\<name>> text the vendor name description <\<description>> text the vendor description active <\<active| >> text "true" or "false" deleted <\<deleted| >> text "true" or "false" updated at <\<updated at>> text iso 8601 timestamp created at <\<created at>> text iso 8601 timestamp