Create organizer in group
documentedCreate a new organizer within a specified group.
POST /groups/{groupKey}/organizersGroupsno 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://api.getgo.com/G2M/rest/groups/{{$groupKey}}/organizers" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"organizerEmail": "{{$organizerEmail}}", "firstName": "{{$firstName}}", "lastName": "{{$lastName}}", "productType": "{{$productType}}"}'