Create event (v2)
documentedCreate a new event using the v2 API (note: v2 endpoint is required for event creation).
PUT /api/2/member/eventsEventsno 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/2/member/events?cloningOptions={{cloningOptions}}" \
-X PUT \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "X-Evenium-Token: {{EVENIUM_API_KEY}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"title": "{{$title}}", "description": "{{$description}}", "startDate": "{{$startDate}}", "endDate": "{{$endDate}}", "location": {"name": "{{$location_name}}", "street": "{{$location_street}}", "city": "{{$location_city}}", "countryCode": "{{$location_countryCode}}"}, "moduleConfigs": ["{{$moduleConfig1}}", "{{$moduleConfig2}}", "{{$moduleConfig3}}"]}'