Create guest
documentedInvite an existing contact or create a guest for an event.
POST /api/1/events/{eventId}/guestsEventsno 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={{$mode}}" \
-X PUT \
-H "X-Evenium-Token: {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"guest": [{"firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "title": "{{$title}}", "email": "{{$email}}", "company": "{{$company}}"}]}'