Sign in

Update guest

documented

Update a guest's details for an event.

PUT /api/1/events/{eventId}/guests/{contactId}Eventsno implementation yet0 runs
No 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/{{$contactId}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "X-API-Key: {{EVENIUM_API_KEY}}" \
  -d '{"email": "{{$email}}", "company": "{{$company}}", "lastUpdate": "{{$lastUpdate}}", "status": "{{$status}}", "category": {"id": {{$category_id}}}, "fields": [{"name": "ADDR_CITY", "value": "{{$city}}"}, {"name": "FIXED_PHONE_NUMBER", "value": "{{$phone}}"}]}'
Update guest · Evenium · OpenIntegrations