People
use a people type ingest endpoint to import or update person records within an event typical use cases include importing new attendees or leads from crm/marketing platforms (e g salesforce, marketo, hubspot) updating existing person records in an event populating categories, custom fields, and item entitlements from external data ingest endpoints can accept any json structured payload jomablue maps your fields to person attributes based on the endpoint's configured mapping rules existing records can be matched by organisation uid to enable updates rather than duplicates for authentication, endpoints, request/response format, and configuration examples for people type endpoints, see the existing sub pages in the left navigation example request request post /api/webhook/ingest/123e4567 e89b 12d3 a456 426614174000 authorization bearer eyjhbgcioi content type application/json accept application/json body { "contact" { "organisationuid" "0012x000004ebhtaau", "first name" "jane", "last name" "doe", "email" "jane doe\@example com", "mobile" "+61400123456", "company" "acme corp", "job title" "marketing manager", "categories" \[7, 9], "custom fields" { "tshirtsize" "m", "state" "nsw" }, "gala dinner" "paid" } } response { 	"success" true }