# Create tee pairings 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. Endpoint: POST /v1/events/{eventId}/teePairings Version: 1.0 Security: bearerAuth ## Path parameters: - `eventId` (string, required) Event Id Example: "S-45876" ## Request fields (application/json): - `courseId` (integer, required) Course Id Example: 21689 - `time` (object, required) Starting Time in UTC (Coordinated Universal Time) Example: "08:00 AM" - `time.hour` (integer) - `time.minute` (integer) - `time.second` (integer) - `time.nano` (integer) - `hole` (integer, required) Starting Hole Example: 1 - `group` (string) Starting Hole Group Example: "A" - `playerIds` (array) Player Ids to assign to the tee pairing Example: [28,159323,41739] ## Response 200 fields (application/json): - `teePairingId` (integer) Tee Id Example: 28857 - `errors` (array) Errors creating the tee pairing Example: ["Unable to add player id 159323 to the tee pairing"]