Import guests (mode=CREATE_ONLY)
documentedImport guests to an event, creating only (no updates) if they already exist.
PUT /api/1/events/{eventId}/guests?mode=CREATE_ONLYEventsno 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/{{$eventId}}/guests?mode=CREATE_ONLY" \
-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}}", "fields": [{"name": "{{$fieldName}}", "value": "{{$fieldValue}}"}] }, {"firstName": "{{$secondFirstName}}", "lastName": "{{$secondLastName}}", "title": "{{$secondTitle}}", "email": "{{$secondEmail}}", "company": "{{$secondCompany}}", "fields": [{"name": "{{$secondFieldName}}", "value": "{{$secondFieldValue}}"}]}] }'