Import guests (mode=MERGE)
documentedImport guests with MERGE semantics (update existing records).
PUT /api/1/events/{eventId}/guests?mode=MERGEEventsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://evenium.com/api/1/events/{{$event_id}}/guests?mode=MERGE" \
-X PUT \
-H "X-Evenium-Token: {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"guest": [{"firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "title": "{{$title}}", "email": "{{$email}}", "company": "{{$company}}", "status": "{{$status}}", "customId": "{{$customId}}", "fields": [{"name": "ADDR_CITY", "value": "{{$city}}"}]}]}'