Vendor Lead
the vendor leads endpoint sends a lead captured by a vendor, linking a person to a vendor its endpoint is served at /updates/api/{endpoint uuid}/vendor leads 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 one key carries a json value rather than text, so its tag sits without quotes tags everything else is plain text and stays quoted this record links a person to a vendor the vendor is identified by vendor id and vendor organisation uid ; the person by event person id and person organisation uid sample mapping { "resource id" "<\<resource id>>", "vendor id" "<\<vendor id>>", "vendor organisation uid" "<\<vendor organisation uid>>", "event person id" "<\<event person id>>", "person organisation uid" "<\<person organisation uid>>", "notes" "<\<notes>>", "tags" <\<tags list|format\ json>>, "updated at" "<\<updated at>>", "created at" "<\<created at>>" } sample output one rendered lead from the array the endpoint returns { "resource id" "your instance/lead/78", "vendor id" "your instance/vendor/895", "vendor organisation uid" "a1s2d3f4g5h6j7k8", "event person id" "your instance/event person/4676", "person organisation uid" "8297d773 016c 4423 8133 7f1edc158898", "notes" "interested in the enterprise plan follow up next week ", "tags" \[ "hot lead", "enterprise" ], "updated at" "2026 04 11t07 53 41 000000z", "created at" "2026 04 10t23 16 17 000000z" } field reference key merge tag emits resource id <\<resource id>> text the lead's resource id vendor id <\<vendor id>> text the linked vendor's resource id vendor organisation uid <\<vendor organisation uid>> text your own identifier for the vendor 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 notes <\<notes>> text free text notes captured against the lead tags <\<tags list|format\ json>> json array of the lead's tags unquoted in the template updated at <\<updated at>> text iso 8601 timestamp created at <\<created at>> text iso 8601 timestamp