# Event Tee Pairings Operations related to the Tee Pairings for an event. **Players:** Players must be signed up for the event to be assigned to a tee pairing. **Course:** Tee pairings are unique by golf course **Tee Group:** The tee group is used to define the order of tee groups starting on the same hole at the same time. An examle is having an "A" and "B" group both starting on hole 1 at 8:00 AM. The "A" group would tee off first followed by the "B" group. ## List tee pairings - [GET /v1/events/{eventId}/teePairings](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/list_4.md): List of Tee Pairings for a single round event, or a round of a multi-round event. ## Update tee pairings - [PUT /v1/events/{eventId}/teePairings](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/updateteetime.md): Update the tee pairings To remove players use the Add or Remove players endpoint. ## Create tee pairings - [POST /v1/events/{eventId}/teePairings](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/addteetime.md): Create the tee pairings, if player ids are included, assign the players to the tee pairing. Creating a new tee pairing with the same the same time, hole, group, and course id as an existing tee pairing will NOT update the existing tee pairing, a new tee pairing will be created. ## Delete all tee pairings - [DELETE /v1/events/{eventId}/teePairings](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/deleteteetimesall.md): Delete all tee pairing, any players assigned to the tee pairing will be unassigned. ## Assign player - [POST /v1/events/{eventId}/teePairings/{teePairingId}/players/{playerId}](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/assignplayer_2.md): Assign the player to the tee pairing ## Remove player - [DELETE /v1/events/{eventId}/teePairings/{teePairingId}/players/{playerId}](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/removeplayer_2.md): Remove the player to the tee pairing ## Assign players - [POST /v1/events/{eventId}/teePairings/players](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/assignplayersall.md): Assign the players to the tee pairing ## Remove all players - [DELETE /v1/events/{eventId}/teePairings/players](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/removeplayersall_1.md): Remove all the players assigned to a tee pairing If a course id is included in as a parameter, only players assigned to tee pairings on that course will be removed. ## Delete tee pairing - [DELETE /v1/events/{eventId}/teePairings/{teePairingId}](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/deleteteetime.md): Delete the tee pairing, any players assigned to the tee pairing will be unassigned. ## List tee pairings all rounds - [GET /v1/events/{eventId}/teePairings/allRounds](https://api-docs.unknowngolf.com/ug-api/event-tee-pairings/listallrounds.md): List of Tee Pairings for all rounds of a multi-round event.