Game Scheduler
This API is the first real implementation of a permissions module, every request has to have appropriate PB-USER-TOKEN header, and based on its value, different results sets will be generated.
Please be careful and report any bad application behavior regarding user permissions.
It is not required to set ownerUuid when creating a Game scheduler because it is inherited from the PB-USER-TOKEN.
Create a Game Scheduler
POST
/v1/game_scheduler
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"ownerUuid": "uuid",
"courtLocationUuid": "x",
"title": "My first GS",
"date": "2024-01-03T22:47:18.968732Z",
"startTime": "2024-01-03T22:47:18.968732Z",
"endTime": "2024-01-03T22:47:18.968732Z",
"isRepeatSchedule": false,
"skillFrom": 0,
"skillTo": 0,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 0,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": false,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": true,
"description": "Some description",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"totalPlayers" : 10,
"optedInPlayerUuids" : ["uuid-1", "uuid-2"]
"didCheckWaiver": false,
"dateArchived": "2023-09-11T19:28:58.244013984Z",
"invitePlayersUuids": ["uuid-1", "uuid-2", "uuid-3"],
"invitePlayersEmails": ["email-1", "email-2"], // if email from invite_players_emails doesnt exist in our system send invite email
"repeats": 38,
"groupUuid":"44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5
}
}
Response
{
"result": {
"uuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87",
"ownerUuid": "uuid",
"courtLocationUuid": "x",
"title": "My first GS",
"date": "2024-01-03T22:47:18.968732Z",
"startTime": "2024-01-03T22:47:18.968732Z",
"endTime": "2024-01-03T22:47:18.968732Z",
"isRepeatSchedule": false,
"skillFrom": 0,
"skillTo": 0,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 0,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": false,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": true,
"description": "Some description",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"totalPlayers": 10,
"optedInPlayerUuids": ["uuid-1", "uuid-2"],
"didCheckWaiver": false,
"dateArchived": "2023-09-11T19:28:58.244013984Z",
"invitePlayersUuids": ["uuid-1", "uuid-2", "uuid-3"],
"invitePlayersEmails": ["email-1", "email-2"],
"repeats": 38,
"groupUuid":"44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5
}
}
Delete a Game Scheduler
DELETE
/v1/game_scheduler/{uuid}
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"result": {
"uuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87",
"ownerUuid": "uuid",
"courtLocationUuid": "x",
"title": "My first GS",
"date": "2024-01-03T22:47:18.968732Z",
"startTime": "2024-01-03T22:47:18.968732Z",
"endTime": "2024-01-03T22:47:18.968732Z",
"isRepeatSchedule": false,
"skillFrom": 0,
"skillTo": 0,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 0,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": false,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": true,
"description": "Some description",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"totalPlayers": 10,
"optedInPlayerUuids": ["uuid-1", "uuid-2"],
"didCheckWaiver": false,
"dateArchived": "2023-09-11T19:28:58.244013984Z",
"invitePlayersUuids": ["uuid-1", "uuid-2", "uuid-3"],
"invitePlayersEmails": ["email-1", "email-2"],
"repeats": 38
}
}
List Game Schedulers
GET
/v1/data/game_scheduler
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Query name | Required | Description |
---|---|---|
retrieve_all | No | Bool value that shows public games. |
date_start | No | Start date. |
date_end | No | End date. |
public | No | Bool value that shows public games. |
private | No | Bool value that shows private games. |
favorite | No | Bool value that shows favorite games. |
game_type_singles | No | Bool value that shows singles games. |
game_type_doubles | No | Bool value that shows doubles games. |
game_type_skinny | No | Bool value that shows skinny games. |
game_type_drills | No | Bool value that shows drills games. |
game_type_any | No | Bool value that shows all games. |
gender_f | No | Bool value that shows female games. |
gender_m | No | Bool value that shows male games. |
gender_any | No | Bool value that shows all genders games. |
ratings | No | Accepts more values, comma separated ie (1, 3.25). |
court_favorite | No | Bool value that shows favorite court. |
Request
Empty
Response
{
"totalRecords": "185",
"results": [
{
"uuid": "000c7323-44cb-4348-bd8d-838603a5a716",
"courtLocationUuid": "5a0acbbc-cfd4-44af-8c84-09637aec7c27",
"title": "Trotter Family YMCA (Houston )",
"date": "2023-08-21T14:15:00Z",
"startTime": "2023-08-25T14:15:00Z",
"endTime": "2023-08-25T17:15:00Z",
"isRepeatSchedule": false,
"skillFrom": 2,
"skillTo": 5,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 4,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": true,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": false,
"description": "dsfefewg. erg hth ht\n twrthhjryjy\ny jyjyjyj",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"didCheckWaiver": false,
"dateArchived": null,
"invitePlayersUuids": [],
"ownerUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"invitePlayersEmails": [],
"repeats": "REPEATES_DAILY",
"optedInCount": 1,
"isFavorite": false,
"ownerFirstname": "ag",
"ownerLastname": "aghyper",
"dateCreated": "2023-08-25T11:19:03Z",
"waitlistCount": 0,
"isUserOnWaitlist": false,
"totalPlayers": 1,
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5,
"optedInPlayersUuids": [
"83661851-2316-494a-a37c-5e8c910b1964"
],
"repeatedParentUuid": "539b3664-ceb4-4497-a7c3-d9a9a8e58d41",
"ownerProfileImage": "https://images.pickleball.com/8onESjOriMbFEwWoiqyKtlJiFDIIy8.png",
"groupUuid": "ef2c7edf-6d4f-47ba-8bd4-82aedf1b40ea",
"groupInfo": {
"uuid": "ef2c7edf-6d4f-47ba-8bd4-82aedf1b40ea",
"name": "All picklers",
"minSkill": 3,
"maxSkill": 5,
"picture": "https://images.pickleball.com/GdUcsJsrxW77Y0hv9ORNYNYfhPwFhb.jpeg",
"description": "test",
"privateGroup": true,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "83661851-2316-494a-a37c-5e8c910b1964"
}
},
{
"uuid": "01633b80-f2c8-4b8f-8951-7eb3985511be",
"courtLocationUuid": "5a0acbbc-cfd4-44af-8c84-09637aec7c27",
"title": "Trotter Family YMCA (Houston )",
"date": "2023-08-12T14:15:00Z",
"startTime": "2023-08-25T14:15:00Z",
"endTime": "2023-08-25T17:15:00Z",
"isRepeatSchedule": false,
"skillFrom": 2,
"skillTo": 5,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 4,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": true,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": false,
"description": "dsfefewg. erg hth ht\n twrthhjryjy\ny jyjyjyj",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"didCheckWaiver": false,
"dateArchived": null,
"invitePlayersUuids": [],
"ownerUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"invitePlayersEmails": [],
"repeats": "REPEATES_DAILY",
"optedInCount": 1,
"isFavorite": false,
"ownerFirstname": "ag",
"ownerLastname": "aghyper",
"dateCreated": "2023-08-25T11:14:06Z",
"waitlistCount": 0,
"isUserOnWaitlist": false,
"totalPlayers": 1,
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5,
"optedInPlayersUuids": [
"83661851-2316-494a-a37c-5e8c910b1964"
],
"repeatedParentUuid": "08dd611c-dc73-46cc-8fd3-72502f691105",
"ownerProfileImage": "https://images.pickleball.com/8onESjOriMbFEwWoiqyKtlJiFDIIy8.png",
"groupUuid": "",
"groupInfo": null
},
{
"uuid": "02d9d17d-6dc7-48b8-82c8-970b3917b96f",
"courtLocationUuid": "5a0acbbc-cfd4-44af-8c84-09637aec7c27",
"title": "Trotter Family YMCA (Houston )",
"date": "2023-08-25T14:15:00Z",
"startTime": "2023-08-25T14:15:00Z",
"endTime": "2023-08-25T17:15:00Z",
"isRepeatSchedule": false,
"skillFrom": 2,
"skillTo": 5,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 4,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": true,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": false,
"description": "dsfefewg. erg hth ht\n twrthhjryjy\ny jyjyjyj",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"didCheckWaiver": false,
"dateArchived": null,
"invitePlayersUuids": [],
"ownerUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"invitePlayersEmails": [],
"repeats": "REPEATES_DAILY",
"optedInCount": 1,
"isFavorite": false,
"ownerFirstname": "ag",
"ownerLastname": "aghyper",
"dateCreated": "2023-08-25T11:24:09Z",
"waitlistCount": 0,
"isUserOnWaitlist": false,
"totalPlayers": 1,
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5,
"optedInPlayersUuids": [
"83661851-2316-494a-a37c-5e8c910b1964"
],
"repeatedParentUuid": "8506c91a-660c-4e54-9861-c76e9e385288",
"ownerProfileImage": "https://images.pickleball.com/8onESjOriMbFEwWoiqyKtlJiFDIIy8.png",
"groupUuid": "",
"groupInfo": null
},
{
"uuid": "03c6ae8a-b717-4566-a438-02d571d837e6",
"courtLocationUuid": "5a0acbbc-cfd4-44af-8c84-09637aec7c27",
"title": "Trotter Family YMCA (Houston )",
"date": "2023-12-07T14:15:00Z",
"startTime": "2023-08-25T14:15:00Z",
"endTime": "2023-08-25T17:15:00Z",
"isRepeatSchedule": false,
"skillFrom": 2,
"skillTo": 5,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 4,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": true,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": false,
"description": "dsfefewg. erg hth ht\n twrthhjryjy\ny jyjyjyj",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"didCheckWaiver": false,
"dateArchived": null,
"invitePlayersUuids": [],
"ownerUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"invitePlayersEmails": [],
"repeats": "REPEATES_WEEKLY",
"optedInCount": 1,
"isFavorite": false,
"ownerFirstname": "ag",
"ownerLastname": "aghyper",
"dateCreated": "2023-08-25T12:07:33Z",
"waitlistCount": 0,
"isUserOnWaitlist": false,
"totalPlayers": 1,
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5,
"optedInPlayersUuids": [
"83661851-2316-494a-a37c-5e8c910b1964"
],
"repeatedParentUuid": "91a17ea6-254f-4612-9394-f4f690f9c994",
"ownerProfileImage": "https://images.pickleball.com/8onESjOriMbFEwWoiqyKtlJiFDIIy8.png",
"groupUuid": "",
"groupInfo": null
},
{
"uuid": "0454c7b2-fc70-4efe-a54f-b2d6dbf01825",
"courtLocationUuid": "5a0acbbc-cfd4-44af-8c84-09637aec7c27",
"title": "Trotter Family YMCA (Houston )",
"date": "2023-08-20T14:15:00Z",
"startTime": "2023-08-25T14:15:00Z",
"endTime": "2023-08-25T17:15:00Z",
"isRepeatSchedule": false,
"skillFrom": 2,
"skillTo": 5,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 4,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": true,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": false,
"description": "dsfefewg. erg hth ht\n twrthhjryjy\ny jyjyjyj",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"didCheckWaiver": false,
"dateArchived": null,
"invitePlayersUuids": [],
"ownerUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"invitePlayersEmails": [],
"repeats": "REPEATES_DAILY",
"optedInCount": 1,
"isFavorite": false,
"ownerFirstname": "ag",
"ownerLastname": "aghyper",
"dateCreated": "2023-08-25T12:06:21Z",
"waitlistCount": 0,
"isUserOnWaitlist": false,
"totalPlayers": 1,
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5,
"optedInPlayersUuids": [
"83661851-2316-494a-a37c-5e8c910b1964"
],
"repeatedParentUuid": "2d36be89-43f6-4c9d-bd6c-eb1ab229d11c",
"ownerProfileImage": "https://images.pickleball.com/8onESjOriMbFEwWoiqyKtlJiFDIIy8.png",
"groupUuid": "",
"groupInfo": null
}
]
}
List a Single Game Scheduler
GET
/v1/data/game_scheduler/{uuid}
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"result": {
"uuid": "ad26422d-ffa6-421a-a893-ba7417874daa",
"courtLocationUuid": "x",
"title": "My first GS",
"date": "2024-01-03T22:47:18.969Z",
"startTime": "2024-01-03T22:47:18.969Z",
"endTime": "2024-01-03T22:47:18.969Z",
"isRepeatSchedule": false,
"skillFrom": 4,
"skillTo": 0,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 0,
"maximumCount": 10,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": false,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": true,
"description": "Some description",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"totalPlayers": 10,
"optedInPlayerUuids": ["uuid-1", "uuid-2"],
"didCheckWaiver": false,
"dateArchived": "2022-12-16T19:43:11Z",
"invitePlayersUuids": [],
"ownerUuid": "bfab2ac4-71ca-4556-9c9f-717dc1ae4101",
"invitePlayersEmails": [],
"repeats": 38,
"optedInCount": 10,
"isFavorite": false,
"ownerFirstname": "",
"ownerLastname": "",
"dateCreated": "2023-03-29T10:32:19Z",
"waitlistCount": 0,
"isUserOnWaitlist": false,
"groupUuid":"44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5
}
}
Update a Game Scheduler
GET
/v1/game_scheduler/{uuid}
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"uuid": "eebbc556-e816-4ecb-bbf7-351b74050834",
"ownerUuid": "uuid",
"courtLocationUuid": "4d9c1f89-4ec5-4654-92c1-65d60e93b303",
"title": "My first GS",
"date": "2024-01-03T22:47:18.968732Z",
"startTime": "2024-01-03T22:47:18.968732Z",
"endTime": "2024-01-03T22:47:18.968732Z",
"isRepeatSchedule": false,
"skillFrom": 0,
"skillTo": 0,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 0,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": false,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": true,
"description": "Some description",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"totalPlayers": 10,
"optedInPlayerUuids": ["uuid-1", "uuid-2"],
"didCheckWaiver": false,
"dateArchived": "2023-09-11T19:28:58.244013984Z",
"repeats": 38,
"groupUuid":"44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5
}
}
Response
{
"result": {
"uuid": "eebbc556-e816-4ecb-bbf7-351b74050834",
"ownerUuid": "uuid",
"courtLocationUuid": "4d9c1f89-4ec5-4654-92c1-65d60e93b303",
"title": "My first GS",
"date": "2024-01-03T22:47:18.968732Z",
"startTime": "2024-01-03T22:47:18.968732Z",
"endTime": "2024-01-03T22:47:18.968732Z",
"isRepeatSchedule": false,
"skillFrom": 0,
"skillTo": 0,
"skillNotUsed": false,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 0,
"maximumCount": 0,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": false,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": false,
"allowInvitedPlayersToSeeList": true,
"description": "Some description",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"totalPlayers": 10,
"optedInPlayerUuids": ["uuid-1", "uuid-2"],
"didCheckWaiver": false,
"dateArchived": "2023-09-11T19:28:58.244013984Z",
"repeats": 38,
"groupUuid":"44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5
}
}
Invite a Player to the Game Scheduler
PUT
/v1/game_scheduler/{uuid}/invite
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"game_scheduler_uuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87",
"email": "test@test.com"
}
}
List All Players for the Game Scheduler
GET
/v1/data/game_scheduler/{uuid}/players_list
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Query name | Required | Description |
---|---|---|
search | No | Filters for email and name. |
Response
{
"result": [
{
"uuid": "83661851-2316-494a-a37c-5e8c910b1964",
"firstName": "ag",
"lastName": "aghyper",
"email": "ag@hyperspaceventures.com",
"status": "0",
"noGuests": "0",
"queueNumber": "0",
"isGuest": true,
"userData": {
"id": "217771",
"uuid": "83661851-2316-494a-a37c-5e8c910b1964",
"platformUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"origin_platform": null,
"firstName": "ag",
"lastName": "aghyper",
"nameSuffix": "",
"gender": "M",
"dob": "1989-05-31T22:00:00Z",
"address1": "test address",
"address2": "test2",
"country": {
"id": "101",
"abbreviation": "IND",
"title": "India",
"internationalCountryCallingCode": "+91",
"stateTitle": "State",
"zipCodeTitle": "Zip",
"systemTextNumberId": "0",
"abbreviation2Digit": "IN",
"displayOrder": 0,
"isEnabled": true,
"regionType": "",
"regionId": 6
},
"state": {
"id": "3921",
"abbreviation": "AZ",
"title": "Arizona",
"countryId": "231",
"isEnabled": true
},
"city": "Rajkot",
"zip": "202213",
"altAddress1": "",
"altAddress2": "",
"altCity": "",
"altZip": "",
"phone": "7412589635",
"sendTextAlerts": false,
"sendTextAlertsDate": null,
"email": "ag@hyperspaceventures.com",
"emergencyContactName": "",
"emergencyContactPhone": "2223223232",
"passwordHash": null,
"profileImage": "https://images.pickleball.com/XsyZBazmXHBtPRAmhIFrEZ9CjPlNqL.jpeg",
"nickname": "",
"facebook": "",
"snapchat": "",
"twitter": "",
"youtube": "",
"instagram": "",
"linikedIn": "",
"dateCreated": "2022-11-15T14:05:00.764Z",
"createdByFullName": "API_v2_User_SaveFromMasterDB",
"dateUpdated": null,
"updatedByFullName": "",
"dateDisabled": null,
"disabledByFullName": "",
"phoneAreaCode": "",
"emergencyContactPhoneAreaCode": "",
"languageFamilyId": "1",
"handed": "RT",
"heightFeet": "0",
"heightInches": "0",
"showAgeToPublic": true,
"unsubscribeEmarketingPickleball": false,
"unsubscribeEmarketing3rdParty": false,
"dateClaimed": "2022-11-15T14:05:49Z",
"platformsList": [],
"governingBodiesList": [],
"timezone": {
"id": "147",
"utcOffset": 5,
"name": "India",
"abbreviation": "IST",
"fullName": "India Standard Time",
"hasDst": false,
"ianaTzIdentifier": "Asia/Kolkata",
"daylightChange": null,
"nonDaylightChange": null,
"daylightSavingAbbreviation": "",
"daylightSavingUtcOffset": 0
},
"platforms": [
{
"id": "1",
"name": "PickleballBrackets.com",
"platformUserUuid": "83661851-2316-494A-A37C-5E8C910B1964"
},
{
"id": "3",
"name": "Pickleball.com",
"platformUserUuid": "83661851-2316-494a-a37c-5e8c910b1964"
}
],
"governingBodies": [],
"altCountry": null,
"altState": null,
"totalFollowers": "0",
"totalFollowing": "0",
"isSubRecord": false,
"isTest": false,
"isCompleted": true,
"emergencyContactPhoneCountryId": "0",
"phoneCountryId": "231",
"createdForModuleUuid": "",
"claimedType": "",
"selfSkillDoubles": {
"id": "9",
"title": "5",
"from": 5,
"to": 5.49999999,
"selfStartPoint": 5.25,
"hierarchy": 9,
"isEnabled": true
},
"selfSkillMixed": null,
"selfSkillSingles": null,
"selfSkillSkinnySingles": null,
"primaryClubUuid": "",
"pickleballUSAPAUTPRSingles": 0,
"pickleballUSAPAUTPRSkinnySingles": 0,
"pickleballUSAPAUTPRDoubles": 0,
"pickleballUSAPAUTPRMixed": 0,
"isSuperAdmin": false,
"isSuperAdminFinancialAccess": false,
"isSuperAdminCanManageAdmins": false,
"systemDateCreated": "2022-11-15T14:05:22.008Z",
"systemDateUpdated": "2024-01-24T10:45:05.948Z",
"originPlatformId": "3",
"updateFromPlatformName": "",
"worldPickleballRatingSingles": 0,
"worldPickleballRatingDoubles": 1.75,
"worldPickleballRatingMixed": 0,
"geniusSportsSinglesUuid": "",
"duprId": "",
"duprDoubles": 0,
"duprSingles": 0,
"tiktok": "",
"showCityToPublic": true,
"showStateToPublic": true,
"showOnlyFirstInitialOfLastNameToPublic": false,
"proLevelId": "4",
"singleRating": 0,
"doublesRating": 0,
"mixedRating": 0,
"skinnySinglesRating": 0,
"numberOfPlayedSingleGames": 0,
"numberOfPlayedDoublesGames": 0,
"numberOfPlayedMixedGames": 0,
"numberOfPlayedSkinnySinglesGames": 0,
"isGeniusSportsAdminMember": false,
"pls": "",
"mergedWithUuid": "",
"bio": "",
"sponsorImg": "",
"featuredImg": "",
"featuredVideo": "",
"representingCountry": null,
"turnedPro": null,
"canConfirmContent": false,
"canCreateContent": false,
"sponsors": [],
"images": [],
"biography": [],
"pickleballUsapaNumber": "",
"pickleballCanadaNumber": "",
"pickleballLifetimeNumber": "",
"pickleballSsipaNumber": "",
"pickleballPaaNumber": "",
"rolePermissions": "257",
"mappedPermissions": [],
"pbUuid": "",
"ratingsReliabilitySingles": 0,
"ratingsReliabilitySkinnySingles": 0,
"ratingsReliabilityDoubles": 0,
"ratingsReliabilityMixed": 0,
"slug": "ag-aghyper",
"dateMerged": null,
"createdFromPlatformId": 0,
"latitude": 0,
"longitude": 0,
"alternateLatitude": 0,
"alternateLongitude": 0,
"bodyWeight": "0",
"backhand": "One-Handed",
"coachFirstName": "",
"coachLastName": "",
"lastActiveDate": null
},
"invitedFromGroupUuid": "",
"dateCreated": null,
"guestName": "test"
}
],
"resultGroups": []
}
Opt In to the Game Scheduler
POST
/v1/game_scheduler/{uuid}/opt_in
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"user_uuid": "9909D2A2-14A8-418C-A7C0-0030ED1F8940",
"game_scheduler_uuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87"
}
}
Opt Out to the Game Scheduler
POST
/v1/game_scheduler/{uuid}/opt_out
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"user_uuid": "9909D2A2-14A8-418C-A7C0-0030ED1F8940",
"game_scheduler_uuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87"
}
}
Create a Game Scheduler Note
POST
/v1/game_scheduler/{uuid}/notes
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"user_uuid": "9909D2A2-14A8-418C-A7C0-0030ED1F8940",
"game_scheduler_uuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87",
"note": "This is some note about the Game",
"date_created": "2024-01-03T22:47:18.968732Z"
}
}
Request
{
"result": {
"uuid": "a443939f-fa19-4503-a7f2-3d097401045f",
"gameSchedulerUuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87",
"note": "This is some note about the Game",
"userUuid": "9909D2A2-14A8-418C-A7C0-0030ED1F8940",
"dateCreated": "2024-01-03T22:47:18.968732Z",
"dateArchived": "2023-09-11T19:28:58.244013984Z"
}
}
Read All Game Scheduler Notes
GET
/v1/data/game_scheduler/{uuid}/notes
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"results": [
{
"uuid": "a443939f-fa19-4503-a7f2-3d097401045f",
"gameSchedulerUuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87",
"note": "This is some note about the Game",
"userUuid": "9909D2A2-14A8-418C-A7C0-0030ED1F8940",
"dateCreated": "2024-01-03T22:47:18.969Z",
"dateArchived": "2023-09-11T19:28:58.244013984Z",
"userFirstName": "Bhai",
"userLastName": "Rocky",
"userProfilePicture": "picture"
}
]
}
Delete a Game Scheduler Note
DELETE
/v1/game_scheduler/{uuid}/notes/{uuid}
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"results": [
{
"uuid": "a443939f-fa19-4503-a7f2-3d097401045f",
"gameSchedulerUuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87",
"note": "This is some note about the Game",
"userUuid": "9909D2A2-14A8-418C-A7C0-0030ED1F8940",
"dateCreated": "2024-01-03T22:47:18.969Z",
"dateArchived": "2023-09-11T19:28:58.244013984Z",
"userFirstName": "Bhai",
"userLastName": "Rocky"
}
]
}
Email Players
POST
/v1/game_scheduler/{uuid}/email_players
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"game_scheduler_uuid": "2e9b0c8e-03db-4913-b186-e7131fca0a87",
"subject": "This is mine new subject",
"content": "Nadjemo se na pivu prije igre."
}
}
Game Scheduler Court Location Like
POST
/v1/game_scheduler/court_location/like
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs",
"isLike": true
}
}
Game Scheduler Court Location Favorite
POST
/v1/game_scheduler/court_location/favorite
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs"
}
}
Game Scheduler Court Location Unfavorite
POST
/v1/game_scheduler/court_location/unfavorite
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs"
}
}
Game Scheduler Like
POST
/v1/game_scheduler/like
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"gameSchedulerUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs",
"isLike": true
}
}
Game Scheduler Favorite
POST
/v1/game_scheduler/favorite
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"gameSchedulerUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs"
}
}
Game Scheduler Unfavorite
POST
/v1/game_scheduler/unfavorite
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"gameSchedulerUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs"
}
}
Remove Game Scheduler Court Location Like
POST
POST /v1/game_scheduler/court_location/like/remove
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs",
"isLike": true
}
}
Request
{
"result": {
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs",
"isLike": true
}
}
Remove Game Scheduler Like
POST
POST /v1/game_scheduler/like/remove
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid":"83661851-2316-494a-a37c-5e8c910b1964",
"gameSchedulerUuid":"8637c5ee-891a-446b-97ee-a4da144d9f08",
"email":"test@test.com",
"guestName":"test"
}
}
Response
{
"result": {
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"gameSchedulerUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs",
"isLike": true
}
}
Game Scheduler Add Guest
POST
POST /v1/game_scheduler/{uuid}/guest/add
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid":"83661851-2316-494a-a37c-5e8c910b1964",
"gameSchedulerUuid":"8637c5ee-891a-446b-97ee-a4da144d9f08",
"email":"test@test.com",
"guestName":"test"
}
}
Response
{
"payload": {
"userUuid":"83661851-2316-494a-a37c-5e8c910b1964",
"gameSchedulerUuid":"8637c5ee-891a-446b-97ee-a4da144d9f08",
"email":"test@test.com",
"guestName":"test"
}
}
Game Scheduler Remove Guest
POST
POST /v1/game_scheduler/{uuid}/guest/remove
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"userUuid": "uuid-3",
"gameSchedulerUuid": "90cc9100-3583-4a9d-a491-bd4194feef98"
}
}
Response
{
"result": {
"userUuid": "uuid-3",
"gameSchedulerUuid": "90cc9100-3583-4a9d-a491-bd4194feef98"
}
}
Get Liked Game Scheduler by User uuid
GET
GET /v1/data/game_scheduler/{user_uuid}/user_likes
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"resultsCourtLocation": [
{
"id": "1",
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25ce186c49fd",
"isLike": true
},
{
"id": "4",
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25ed186c49fd",
"isLike": true
},
{
"id": "3",
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25ee186c49fd",
"isLike": true
},
{
"id": "5",
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fd",
"isLike": false
},
{
"id": "6",
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs",
"isLike": true
}
],
"resultsGame": [
{
"id": "1",
"userUuid": "00005470-ccfc-4945-bb98-5feaecba47dd",
"gameSchedulerUuid": "b05a08a2-abf7-48e2-9a55-25eh186c49fs",
"isLike": false
}
],
"CourtLocationsCount": "5",
"GamesCount": "1"
}
Get Favorite Game Scheduler by User uuid
GET
GET /v1/data/game_scheduler/{user_uuid}/user_favorites
8
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"resultsCourtLocation": [],
"resultsGame": [
{
"id": "10",
"userUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"gameSchedulerUuid": "599333eb-fd86-41ad-82d0-c1b65697f5de",
"gsName": "Weston Regional Park (Weston)",
"courtUuid": "21fa97c3-48b5-4bc9-94e8-a179ff146e55",
"courtName": "Weston Regional Park",
"city": "Weston",
"state": "Florida",
"country": "United States",
"isUserFavorite": true
},
{
"id": "4",
"userUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"gameSchedulerUuid": "ee211dff-fac3-4f15-ba44-a76da18c0c59",
"gsName": "Weston Regional Park (Weston)",
"courtUuid": "21fa97c3-48b5-4bc9-94e8-a179ff146e55",
"courtName": "Weston Regional Park",
"city": "Weston",
"state": "Florida",
"country": "United States",
"isUserFavorite": true
},
{
"id": "9",
"userUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"gameSchedulerUuid": "fb927a77-be7d-433c-99e4-772b704ed042",
"gsName": "Weston Regional Park (Weston)",
"courtUuid": "21fa97c3-48b5-4bc9-94e8-a179ff146e55",
"courtName": "Weston Regional Park",
"city": "Weston",
"state": "Florida",
"country": "United States",
"isUserFavorite": true
}
],
"CourtLocationsCount": "0",
"GamesCount": "3"
}
Get Game Scheduler Game Stats by User uuid
GET
GET /v1/data/game_scheduler/{uuid}/game_stats
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"LikeCount": "1",
"FollowCount": "1"
}
Get Game Scheduler CL Stats by User uuid
GET
GET /v1/data/game_scheduler/{uuid}/cl_stats
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"LikeCount": "1",
"FollowCount": "1"
}
Get Game Scheduler Places
GET
GET /v1/game_scheduler/places
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"locations": [
{
"streetAddress": "919 Stimple Ct,",
"state": "Alaska",
"country": "United States",
"city": "Fairbanks",
"zip": "99712",
"courtLocationUuid": "30daccaf-9a92-427e-9a66-79e316730df2",
"name": "919 Stimple Ct",
"latitude": 0,
"longitude": 0
},
{
"streetAddress": "Some St.21",
"state": "Andhra Pradesh",
"country": "United States",
"city": "Tuzla",
"zip": "75000",
"courtLocationUuid": "b05a08a2-abf7-48e2-9a55-25ce186c49fd",
"name": "Name of Location",
"latitude": 10,
"longitude": 14.2
}
]
}
Table of Game Scheduler Enums
Game Scheduler player status
go
enum GameSchedulerPlayerStatus {
UNDEFINED_GAME_SCHEDULER_PLAYER_STATUS = 0;
INVITED_PLAYER_STATUS = 1;
OPTED_IN_PLAYER_STATUS = 2;
WAITING_PLAYER_STATUS = 3;
}
Game Scheduler repeat interval
go
enum GameSchedulerRepeatInterval{
DOES_NOT_REPEATE = 0;
REPEATES_DAILY = 1;
REPEATES_WEEKLY = 2;
REPEATES_EVERYDAY = 3;
}
Get Game Scheduler Feedback
GET
GET /v1/data/game_scheduler/feedback
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"feedbackList": [
{
"id": "1",
"reason": "BUG",
"email": "TEST",
"details": "TESTING..."
}
],
"count": "1"
}
Post Game Scheduler Feedback
POST
POST /v1/game_scheduler/feedback
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"reason":1,
"email":"TEST",
"details":"TESTING..."
}
}
Response
{
"result": {
"reason":1,
"email":"TEST",
"details":"TESTING..."
}
}
Create Game Scheduler Groups
POST
POST /v1/game_scheduler/groups
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"name": "test",
"min_skill": 1,
"max_skill":5,
"description":"test",
"picture":"test",
"private_group":false,
"allow_player_invites":true,
"display_admin_info":true
},
"payload_grouping":[{"user_uuid":"test"}],
"payload_courts":[{"court_uuid":"test"}]
}
Response
{
"payload": {
"uuid": "276e7186-9274-41dd-b2c8-80d8f327ddb7",
"name": "test",
"minSkill": "2",
"maxSkill": "5",
"picture": "test",
"description": "test",
"privateGroup": false,
"allowPlayerInvites": true,
"displayAdminInfo": true,
"ownerUuid": ""
},
"payloadGrouping": [
{
"id": "0",
"groupingUuid": "276e7186-9274-41dd-b2c8-80d8f327ddb7",
"userUuid": "test2"
}
],
"payloadCourts": [
{
"id": "0",
"groupingUuid": "276e7186-9274-41dd-b2c8-80d8f327ddb7",
"courtUuid": "test2"
}
]
}
List Game Scheduler Groups
GET
GET /v1/data/game_scheduler/groups/{uuid}
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"results": {
"uuid": "44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"name": "All picklers",
"minSkill": 2,
"maxSkill": 5,
"picture": "https://images.pickleball.com/JOrnsTN3VCdVZpZtMQsxsvyrugB6vf.jpeg",
"description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
"privateGroup": true,
"allowPlayerInvites": true,
"displayAdminInfo": true,
"ownerUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"url": "",
wnerFirstname": "ag",
"ownerLastname": "aghyper",
},
"resultsGrouping": [
{
"id": "5",
"groupingUuid": "44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"userUuid": "284dcb7e-35db-4f9c-b06a-3f4540231306",
"group": null,
"inviteAccepted": false,
"groupInvited": "0",
"groupAccepted": "0",
"askToJoinGroup": true
},
{
"id": "4",
"groupingUuid": "44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"userUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"group": null,
"inviteAccepted": true,
"groupInvited": "0",
"groupAccepted": "0",
"askToJoinGroup": true
}
],
"resultsCourts": [
{
"id": "2",
"groupingUuid": "44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"courtUuid": "0def038a-e105-441c-bd85-39d9c1df16d9",
"courtData": {
"uuid": "0def038a-e105-441c-bd85-39d9c1df16d9",
"venue": "1001 S Clapp St",
"name": "Curtis D. Menard Memorial Sports Center",
"altName": "",
"streetAddress": "1001 S Clapp St",
"countryId": "231",
"stateId": "3920",
"city": "Wasilla",
"zip": "99687",
"phoneCountryId": "0",
"phoneAreaCode": "",
"phone": "9073579100",
"email": "",
"url": "",
"isLight": false,
"isFeeToPlay": false,
"isOpenPlay": false,
"parkingInformation": "None",
"isParkingFee": false,
"numberOfCourtsIndoor": "2",
"numberOfCourtsOutdoor": "0",
"description": "Come play pickleball at Curtis D. Menard Memorial Sports Center in Wasilla, AK! There are 2 dedicated indoor courts. The lines are dedicated, and the nets are portable. It is a fee to play. ",
"latitude": 61.5723876953125,
"longitude": -149.51622009277344,
"dateArchived": null,
"dateApproved": "2023-06-15T14:00:00Z",
"surfaceTypesIds": [
"6"
],
"playAreaTypesIds": [],
"lineTypesIds": [
"1"
],
"netTypesIds": [
"2"
],
"amenitiesIds": [],
"hours": [],
"isFavorite": false,
"lighting": true,
"facilityCategory": "FACILITY_ENUM",
"searchDistance": 0,
"state": "",
"country": ""
}
}
]
}
Get Game Scheduler Groups by User uuid
GET
GET /v1/data/game_scheduler/groups/user/{user_uuid}
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"data": [
{
"group": {
"uuid": "f1283421-0442-4fbb-9881-4dd73f716e47",
"name": "Weston picklers",
"minSkill": 2,
"maxSkill": 2,
"picture": "https://images.pickleball.com/5WGLBclgJxIMiuobGzjzzsFsP9V0QD.jpeg",
"description": "Let’s pickle!!",
"privateGroup": true,
"allowPlayerInvites": true,
"displayAdminInfo": true,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "600",
"groupingUuid": "f1283421-0442-4fbb-9881-4dd73f716e47",
"userUuid": "09b73f72-f0aa-480c-8fd3-1fb17d087cc2",
"inviteAccepted": true,
"askToJoinGroup": true,
"isOwner": false,
"notificationSent": false
},
{
"id": "417",
"groupingUuid": "f1283421-0442-4fbb-9881-4dd73f716e47",
"userUuid": "284dcb7e-35db-4f9c-b06a-3f4540231306",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "205",
"groupingUuid": "f1283421-0442-4fbb-9881-4dd73f716e47",
"userUuid": "55F7332B-ED96-45C9-BB83-D85F7BDBEA4B",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "79",
"groupingUuid": "f1283421-0442-4fbb-9881-4dd73f716e47",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "288",
"groupingUuid": "f1283421-0442-4fbb-9881-4dd73f716e47",
"userUuid": "6f862c1d-1317-4fe7-bdcd-64caa0dbb088",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "221",
"groupingUuid": "f1283421-0442-4fbb-9881-4dd73f716e47",
"userUuid": "ba68cf47-91da-47bb-aead-e55634cae951",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "203",
"groupingUuid": "f1283421-0442-4fbb-9881-4dd73f716e47",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 3,
"groupPending": 4
},
{
"group": {
"uuid": "4751a023-1b4a-4fc2-94e4-4496fdd7697f",
"name": "New group",
"minSkill": 4.5,
"maxSkill": 5,
"picture": "https://images.pickleball.com/IsUhgpae3vKFHViVAh3j1ZunnH43Jr.jpeg",
"description": "New group",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "556",
"groupingUuid": "4751a023-1b4a-4fc2-94e4-4496fdd7697f",
"userUuid": "3aafb159-5fe0-4a93-9d85-c8c7e8e490b7",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "557",
"groupingUuid": "4751a023-1b4a-4fc2-94e4-4496fdd7697f",
"userUuid": "68e64c05-060e-4193-be8d-71e1cd2bdade",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "212",
"groupingUuid": "4751a023-1b4a-4fc2-94e4-4496fdd7697f",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "558",
"groupingUuid": "4751a023-1b4a-4fc2-94e4-4496fdd7697f",
"userUuid": "840d1731-2f00-4602-810c-b2fe6c22777a",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "213",
"groupingUuid": "4751a023-1b4a-4fc2-94e4-4496fdd7697f",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 1,
"groupPending": 4
},
{
"group": {
"uuid": "8637c5ee-891a-446b-97ee-a4da144d9f08",
"name": "New group testing 20",
"minSkill": 2,
"maxSkill": 5,
"picture": "https://images.pickleball.com/5fnxfUvGZvw5gSAAKmlzSu3zlZH6bK.jpeg",
"description": "Test",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "289",
"groupingUuid": "8637c5ee-891a-446b-97ee-a4da144d9f08",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
},
{
"id": "300",
"groupingUuid": "8637c5ee-891a-446b-97ee-a4da144d9f08",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 2,
"groupPending": 0
},
{
"group": {
"uuid": "260026b1-5933-468c-91ae-aaa2c9d63272",
"name": "Zach Tom Bryan Test Group",
"minSkill": 4.75,
"maxSkill": 5,
"picture": "https://images.pickleball.com/ReqXP43Jf4TdjK32bdNTeqsYF6vivx.jpeg",
"description": "Let’s test the group for the GameMaker app here ",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "302",
"groupingUuid": "260026b1-5933-468c-91ae-aaa2c9d63272",
"userUuid": "26fcf275-9f1a-4951-99df-7e9c8fd9cac2",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "301",
"groupingUuid": "260026b1-5933-468c-91ae-aaa2c9d63272",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
},
{
"id": "303",
"groupingUuid": "260026b1-5933-468c-91ae-aaa2c9d63272",
"userUuid": "ba68cf47-91da-47bb-aead-e55634cae951",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "339",
"groupingUuid": "260026b1-5933-468c-91ae-aaa2c9d63272",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 4,
"groupPending": 0
},
{
"group": {
"uuid": "c63f53ab-22fc-49bd-92cf-9e2c178cc05f",
"name": "Zach’s private group",
"minSkill": 4.75,
"maxSkill": 5,
"picture": "https://images.pickleball.com/vKcf7zZw3zcZg1S1v7v3w2vMZSYE7N.jpeg",
"description": "This is my private group ",
"privateGroup": true,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"ownerFirstname": "Zach",
"ownerLastname": "Hunter"
},
"grouping": [
{
"id": "341",
"groupingUuid": "c63f53ab-22fc-49bd-92cf-9e2c178cc05f",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": true,
"isOwner": false,
"notificationSent": false
},
{
"id": "340",
"groupingUuid": "c63f53ab-22fc-49bd-92cf-9e2c178cc05f",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
},
{
"id": "343",
"groupingUuid": "c63f53ab-22fc-49bd-92cf-9e2c178cc05f",
"userUuid": "E97EAFB3-FCDA-44D0-80ED-F82BB8E76ACF",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 2,
"groupPending": 1
},
{
"group": {
"uuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"name": "Dallas Top 35",
"minSkill": 4.5,
"maxSkill": 5,
"picture": "https://images.pickleball.com/nZasneI3jGX5nvyihcS8q685D5nULx.jpeg",
"description": "Test",
"privateGroup": true,
"allowPlayerInvites": true,
"displayAdminInfo": false,
"ownerUuid": "26fcf275-9f1a-4951-99df-7e9c8fd9cac2",
"ownerFirstname": "Brian",
"ownerLastname": "Hershman"
},
"grouping": [
{
"id": "173",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "26fcf275-9f1a-4951-99df-7e9c8fd9cac2",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "561",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "3aafb159-5fe0-4a93-9d85-c8c7e8e490b7",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "608",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "4057f30d-d42a-4189-a158-11576fb5f52a",
"inviteAccepted": true,
"askToJoinGroup": true,
"isOwner": false,
"notificationSent": false
},
{
"id": "431",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "442BDF34-D745-41F6-A312-AF46A2276AF6",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "430",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "614E164A-4197-44EB-855C-586CF79FBFC9",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "548",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "633d430b-d2fd-430c-8027-790e5105a5be",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "560",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "68e64c05-060e-4193-be8d-71e1cd2bdade",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "348",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": true,
"isOwner": false,
"notificationSent": false
},
{
"id": "562",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "840d1731-2f00-4602-810c-b2fe6c22777a",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "429",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "9061930A-DBF1-4F9D-A768-B3F725F81F3A",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "559",
"groupingUuid": "a6e4fc13-eebf-47a8-a87e-4f799589f6c9",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 2,
"groupPending": 9
},
{
"group": {
"uuid": "89229f70-4fa4-40d2-9a48-9d6b05bc9860",
"name": "The South Florida Picklers",
"minSkill": 4,
"maxSkill": 5,
"picture": "https://images.pickleball.com/pzidkeQNMrxrJnii7NzH8kYfPCif9q.jpeg",
"description": "This is a group for south Florida picklers",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "565",
"groupingUuid": "89229f70-4fa4-40d2-9a48-9d6b05bc9860",
"userUuid": "3aafb159-5fe0-4a93-9d85-c8c7e8e490b7",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "564",
"groupingUuid": "89229f70-4fa4-40d2-9a48-9d6b05bc9860",
"userUuid": "68e64c05-060e-4193-be8d-71e1cd2bdade",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "404",
"groupingUuid": "89229f70-4fa4-40d2-9a48-9d6b05bc9860",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
},
{
"id": "566",
"groupingUuid": "89229f70-4fa4-40d2-9a48-9d6b05bc9860",
"userUuid": "840d1731-2f00-4602-810c-b2fe6c22777a",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "563",
"groupingUuid": "89229f70-4fa4-40d2-9a48-9d6b05bc9860",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 1,
"groupPending": 4
},
{
"group": {
"uuid": "924a2e4e-7746-4c4d-b9f7-a5c09a33f236",
"name": "Woogie Picklers",
"minSkill": 2.5,
"maxSkill": 5,
"picture": "https://images.pickleball.com/Ij8Pw13vXIiZg52t3TsFTUM8yJ2vvK.jpeg",
"description": "Woogie gang let’s pickle. Pickle pickle pickle!! Oy Oy Oy ",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "406",
"groupingUuid": "924a2e4e-7746-4c4d-b9f7-a5c09a33f236",
"userUuid": "23013779-7bd3-4f0e-9ef3-7a0b59872e26",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "405",
"groupingUuid": "924a2e4e-7746-4c4d-b9f7-a5c09a33f236",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
},
{
"id": "408",
"groupingUuid": "924a2e4e-7746-4c4d-b9f7-a5c09a33f236",
"userUuid": "97501c5e-5c1e-4601-8751-901b60ba4dd2",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "407",
"groupingUuid": "924a2e4e-7746-4c4d-b9f7-a5c09a33f236",
"userUuid": "a65df720-7e36-49bf-8aae-d70da6540336",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "409",
"groupingUuid": "924a2e4e-7746-4c4d-b9f7-a5c09a33f236",
"userUuid": "c1a382fc-9a9c-4f91-a9d4-2887e4d0aaae",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "410",
"groupingUuid": "924a2e4e-7746-4c4d-b9f7-a5c09a33f236",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "411",
"groupingUuid": "924a2e4e-7746-4c4d-b9f7-a5c09a33f236",
"userUuid": "f4fb634d-ff08-4398-a8a1-078da22fe7eb",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 6,
"groupPending": 1
},
{
"group": {
"uuid": "b323c758-e719-4501-90f2-2c371434799b",
"name": "Zach November ",
"minSkill": 2,
"maxSkill": 5,
"picture": "https://images.pickleball.com/nmWn7NuK71kyZvxm2bAaztHuY78btS.jpeg",
"description": "Test",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "434",
"groupingUuid": "b323c758-e719-4501-90f2-2c371434799b",
"userUuid": "68e64c05-060e-4193-be8d-71e1cd2bdade",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "433",
"groupingUuid": "b323c758-e719-4501-90f2-2c371434799b",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
}
],
"groupAccepted": 1,
"groupPending": 1
},
{
"group": {
"uuid": "948e9d76-8465-4550-bdeb-e2bc5a872898",
"name": "Zach Austin nov",
"minSkill": 2,
"maxSkill": 5,
"picture": "https://images.pickleball.com/ri7oBjhCC0AOAhLZ4xve4865EUfM5i.jpeg",
"description": "Test",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"ownerFirstname": "Zach",
"ownerLastname": "Hunter"
},
"grouping": [
{
"id": "436",
"groupingUuid": "948e9d76-8465-4550-bdeb-e2bc5a872898",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "435",
"groupingUuid": "948e9d76-8465-4550-bdeb-e2bc5a872898",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
}
],
"groupAccepted": 2,
"groupPending": 0
},
{
"group": {
"uuid": "843cbb60-1fef-45b1-a086-9bd6371fb4d2",
"name": "The Dallas Dills",
"minSkill": 3.5,
"maxSkill": 4,
"picture": "https://images.pickleball.com/WcvFwCu5xZwtMpNU6L0Eaya6hGuu6p.jpeg",
"description": "Let’s play pickle",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "437",
"groupingUuid": "843cbb60-1fef-45b1-a086-9bd6371fb4d2",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
}
],
"groupAccepted": 1,
"groupPending": 0
},
{
"group": {
"uuid": "69014e08-6ae0-4976-8989-23de8836391c",
"name": "Hunter house ",
"minSkill": 4.25,
"maxSkill": 5,
"picture": "https://images.pickleball.com/1UV8tWKQgOHmaIhiZx5MBN2NewXRvC.jpeg",
"description": "Test",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "09b73f72-f0aa-480c-8fd3-1fb17d087cc2",
"ownerFirstname": "Test",
"ownerLastname": "Account "
},
"grouping": [
{
"id": "575",
"groupingUuid": "69014e08-6ae0-4976-8989-23de8836391c",
"userUuid": "09b73f72-f0aa-480c-8fd3-1fb17d087cc2",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
},
{
"id": "576",
"groupingUuid": "69014e08-6ae0-4976-8989-23de8836391c",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 2,
"groupPending": 0
},
{
"group": {
"uuid": "f235b2d0-db4b-4683-b6b8-ff886444fb1a",
"name": "Washington Picklers",
"minSkill": 3.5,
"maxSkill": 5,
"picture": "https://images.pickleball.com/C0DqpDcnj8dFJeqVrDlJ7wjiImnXOs.jpeg",
"description": "test",
"privateGroup": false,
"allowPlayerInvites": true,
"displayAdminInfo": true,
"ownerUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"ownerFirstname": "ag",
"ownerLastname": "aghyper"
},
"grouping": [
{
"id": "119",
"groupingUuid": "f235b2d0-db4b-4683-b6b8-ff886444fb1a",
"userUuid": "15f62676-17e5-4959-9138-5607a206a990",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "118",
"groupingUuid": "f235b2d0-db4b-4683-b6b8-ff886444fb1a",
"userUuid": "665e0052-0581-4923-8b9f-3e3e1546103e",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "607",
"groupingUuid": "f235b2d0-db4b-4683-b6b8-ff886444fb1a",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "9",
"groupingUuid": "f235b2d0-db4b-4683-b6b8-ff886444fb1a",
"userUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "192",
"groupingUuid": "f235b2d0-db4b-4683-b6b8-ff886444fb1a",
"userUuid": "8681f4b4-1405-48d0-b5f5-e9d210488340",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "246",
"groupingUuid": "f235b2d0-db4b-4683-b6b8-ff886444fb1a",
"userUuid": "c9faf74e-fe4a-4d02-9ff2-2618b232b5e8",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "220",
"groupingUuid": "f235b2d0-db4b-4683-b6b8-ff886444fb1a",
"userUuid": "eb54b407-2fde-445a-94af-f712a7adfa37",
"inviteAccepted": false,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
}
],
"groupAccepted": 3,
"groupPending": 4
},
{
"group": {
"uuid": "88deab0e-6437-4ce2-82cc-14a949ef8ae2",
"name": "November group",
"minSkill": 2,
"maxSkill": 5,
"picture": "https://images.pickleball.com/grMMNdpPcnrnW9am1hg6kHllGbLdsw.jpeg",
"description": "Test",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "609",
"groupingUuid": "88deab0e-6437-4ce2-82cc-14a949ef8ae2",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
}
],
"groupAccepted": 1,
"groupPending": 0
},
{
"group": {
"uuid": "a9dc6734-7d23-47e7-a29b-ca33a96303ba",
"name": "December test",
"minSkill": 2,
"maxSkill": 5,
"picture": "https://images.pickleball.com/Z6y1Z8AK6Zy6CB7OauP8wMDgHLQjph.jpeg",
"description": "Testing ",
"privateGroup": false,
"allowPlayerInvites": false,
"displayAdminInfo": false,
"ownerUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"ownerFirstname": "zach (ernesto)",
"ownerLastname": "hunter"
},
"grouping": [
{
"id": "611",
"groupingUuid": "a9dc6734-7d23-47e7-a29b-ca33a96303ba",
"userUuid": "09b73f72-f0aa-480c-8fd3-1fb17d087cc2",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": false,
"notificationSent": false
},
{
"id": "610",
"groupingUuid": "a9dc6734-7d23-47e7-a29b-ca33a96303ba",
"userUuid": "6A1154AD-8B24-4DAE-AE1B-77E8D9E47AF9",
"inviteAccepted": true,
"askToJoinGroup": false,
"isOwner": true,
"notificationSent": false
}
],
"groupAccepted": 2,
"groupPending": 0
}
],
"count": "15"
}
Create Game Scheduler Groupings
POST
POST /v1/game_scheduler/groupings
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"grouping_uuid":"276e7186-9274-41dd-b2c8-80d8f327ddb7"
}
Response
{
"payload": [
{
"id": "0",
"groupingUuid": "276e7186-9274-41dd-b2c8-80d8f327ddb7",
"userUuid": "test3"
}
],
"groupingUuid": "276e7186-9274-41dd-b2c8-80d8f327ddb7"
}
Create Game Scheduler Groupings by Uuid
POST
POST /v1/game_scheduler/groups/{uuid}/join
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Note: Game Scheduler uuid is required.
Request
Empty
Response
{
"id": "0",
"groupingUuid": "276e7186-9274-41dd-b2c8-80d8f327ddb7",
"userUuid": "d761a4d5-d593-43b9-8b67-ba7bf6a277e9"
}
Delete Game Scheduler Groupings
DELETE
DELETE /v1/admin/game_scheduler/groupings/{uuid}
Query parameters
Name | Description |
---|---|
user_uuid | optional parameter, to delete only that specified user |
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
200 OK if deleted successfully
Delete Game Scheduler Groups
DELETE
DELETE /v1/admin/game_scheduler/groups/{uuid}
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
200 OK if deleted successfully
Invite Group to Game Scheduler
PUT
/v1/game_scheduler/{gs_uuid}/invite_groupped
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"gs_uuid":"00def9ce-7049-42d3-bbfd-ac543dc0b96e",
"group_uuids":["44e9ac15-e0e4-4aa6-a60e-43dd135e6707","17d38e26-87e2-4b0f-8f79-061af71a1487"],
"user_uuids":["00013f89-9d2b-4b40-9f49-59418aea67b4"],
"emails":["abc@dgc.com", "kenan@thegate.dev"],
"phone_numbers":["+123414141","+17483821318"]
}
Response
200 ok if group invited succesffully
Get Player Scheduled Games
GET
/v1/data/game_scheduler/{player_uuid}/games
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Query Parameters
Name | Description |
---|---|
page_size | Number value that represents number of page |
current_page | Number value that represents offset of returned results |
Request
Empty
Response
{
"result": [
{
"uuid": "83661851-2316-494a-a37c-5e8c910b1964",
"firstName": "ag",
"lastName": "aghyper",
"email": "ag@hyperspaceventures.com",
"status": "2",
"noGuests": "0",
"queueNumber": "0",
"isGuest": false,
"invitedFromGroupUuid": "",
"gameSchedulerUuid": "362ec27c-72d3-44a8-b156-bcded4224348",
"gsData": {
"uuid": "362ec27c-72d3-44a8-b156-bcded4224348",
"courtLocationUuid": "7d097502-452a-44d8-9e5e-390fff0418b3",
"title": "Plantation Central Park (Plantation)",
"date": "2023-03-29T09:00:00Z",
"startTime": "2023-03-29T09:00:00Z",
"endTime": "2023-03-29T10:00:00Z",
"isRepeatSchedule": false,
"skillFrom": 4,
"skillTo": 5,
"skillNotUsed": true,
"ageFrom": 0,
"ageTo": 0,
"ageNotUsed": 0,
"genderM": false,
"genderF": false,
"genderAny": false,
"genderNotUsed": true,
"isPartnersOnly": false,
"minimumCount": 4,
"maximumCount": 8,
"useWaitingList": true,
"dateTimeWaitListAutomationStops": false,
"isInviteOnly": false,
"gameTypeAny": false,
"gameTypeSingles": false,
"gameTypeDoubles": true,
"gameTypeSkinny": false,
"gameTypeDrills": true,
"allowInvitedPlayersToSeeList": false,
"description": "This is an open play game for 8 people.",
"allowPlayersToAddNotes": false,
"allowNonPlayersToAddNotes": true,
"didCheckWaiver": false,
"dateArchived": null,
"invitePlayersUuids": [],
"ownerUuid": "3aafb159-5fe0-4a93-9d85-c8c7e8e490b7",
"invitePlayersEmails": [],
"repeats": "DOES_NOT_REPEATE",
"optedInCount": 0,
"isFavorite": false,
"ownerFirstname": "",
"ownerLastname": "",
"dateCreated": "2023-03-29T10:43:29Z",
"waitlistCount": 0,
"isUserOnWaitlist": false,
"totalPlayers": 0,
"optedInPlayersUuids": [],
"repeatedParentUuid": "",
"ownerProfileImage": "",
"timezoneAbbreviation": "CST",
"timezoneName": "Cuba",
"dateLocalized": "2023-08-20T09:15:00Z",
"startTimeLocalized": "2023-08-25T09:15:00Z",
"endTimeLocalized": "2023-08-25T12:15:00Z",
"timezoneOffset": -5
},
"courtData": {
"uuid": "7d097502-452a-44d8-9e5e-390fff0418b3",
"venue": "9151 NW 2nd St.",
"name": "Plantation Central Park",
"altName": "",
"streetAddress": "9151 NW 2nd St.",
"countryId": "231",
"stateId": "3930",
"city": "Plantation",
"zip": "33324",
"phoneCountryId": "0",
"phoneAreaCode": "",
"phone": "9544522510",
"email": "z@hyperspaceventures.com",
"url": "https://www.plantation.org/government/departments/parks-recreation/veltri-tennis-center/pickleball",
"isLight": false,
"isFeeToPlay": false,
"isOpenPlay": true,
"parkingInformation": "None",
"isParkingFee": false,
"numberOfCourtsIndoor": "0",
"numberOfCourtsOutdoor": "10",
"description": "The City of Plantation is home to 13 Pickleball courts (12 located within Plantation Central Park and 1 located at Jacaranda Lakes Park). Courts are open during regular park hours. All levels are welcome, including beginners.",
"latitude": 0,
"longitude": 0,
"dateArchived": "2023-04-04T01:44:12.945Z",
"dateApproved": "2023-03-24T16:00:00Z",
"surfaceTypesIds": [
"10"
],
"playAreaTypesIds": [],
"lineTypesIds": [
"1"
],
"netTypesIds": [
"5"
],
"amenitiesIds": [
"1",
"3",
"7"
],
"hours": [
{
"courtLocationUuid": "7d097502-452a-44d8-9e5e-390fff0418b3",
"dayOfWeek": "1",
"fromTime": "6:00AM",
"toTime": "11:00PM",
"description": "",
"cost": 0,
"isOpenPlay": false
},
{
"courtLocationUuid": "7d097502-452a-44d8-9e5e-390fff0418b3",
"dayOfWeek": "2",
"fromTime": "6:00AM",
"toTime": "11:00PM",
"description": "",
"cost": 0,
"isOpenPlay": false
},
{
"courtLocationUuid": "7d097502-452a-44d8-9e5e-390fff0418b3",
"dayOfWeek": "3",
"fromTime": "6:00AM",
"toTime": "11:00PM",
"description": "",
"cost": 0,
"isOpenPlay": false
},
{
"courtLocationUuid": "7d097502-452a-44d8-9e5e-390fff0418b3",
"dayOfWeek": "4",
"fromTime": "6:00AM",
"toTime": "11:00PM",
"description": "",
"cost": 0,
"isOpenPlay": false
},
{
"courtLocationUuid": "7d097502-452a-44d8-9e5e-390fff0418b3",
"dayOfWeek": "5",
"fromTime": "6:00AM",
"toTime": "11:00PM",
"description": "",
"cost": 0,
"isOpenPlay": false
},
{
"courtLocationUuid": "7d097502-452a-44d8-9e5e-390fff0418b3",
"dayOfWeek": "6",
"fromTime": "6:00AM",
"toTime": "11:00PM",
"description": "",
"cost": 0,
"isOpenPlay": false
},
{
"courtLocationUuid": "7d097502-452a-44d8-9e5e-390fff0418b3",
"dayOfWeek": "7",
"fromTime": "6:00AM",
"toTime": "11:00PM",
"description": "",
"cost": 0,
"isOpenPlay": false
}
],
"isFavorite": false,
"lighting": false,
"facilityCategory": "PRIVATE_ENUM",
"searchDistance": 0,
"state": "",
"country": ""
},
"dateCreated": null
}
]
}
Approve player to group
POST
/v1/game_scheduler/groups/{gs_uuid}/approve/{player_uuid}
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
Empty
Response
{
"id": "4",
"groupingUuid": "44e9ac15-e0e4-4aa6-a60e-43dd135e6707",
"userUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"group": null,
"inviteAccepted": true,
"groupInvited": "0",
"groupAccepted": "0",
"askToJoinGroup": true,
}
Get Users From Group
GET
/v1/game_scheduler/groups/{group_uuid}/users
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Query Parameters
Param | Description |
---|---|
search | String value filter by user first name and last name. |
page_size | Number value that represents number of returned results. |
current_page | Number value that represents offset of returned results. |
uuid | String value that represents the uuid of the user. |
location | Filters the users by State, Country, City. Abbreviations can be used. (ex.1. "Madisonville,Louisiana,United States", ex.2. "USA", ex.3. "Madisonville, United States") |
age | Int value that returns users filtered by age. If you want users below 20 years of age use <20. |
gender | Filters out the users by gender. Possible filters are "M" for male and "F" for female users. |
min_single_rating | Float value that filters out users that have single rating greater than the given min_single_rating. |
max_single_rating | Float value that filters out users that have single rating lesser than the given max_single_rating. |
min_doubles_rating | Float value that filters out users that have doubles rating greater than the given min_doubles_rating. |
max_doubles_rating | Float value that filters out users that have doubles rating lesser than the given max_double_rating. |
Request
Empty
Response
{
"totalRecords": "2",
"results": [
{
"uuid": "83661851-2316-494a-a37c-5e8c910b1964",
"platformUuid": "83661851-2316-494a-a37c-5e8c910b1964",
"firstName": "ag",
"lastName": "aghyper",
"nameSuffix": "",
"gender": "",
"dob": "1987-06-11T22:00:00Z",
"address1": "test",
"address2": "test",
"country": {
"id": "101",
"abbreviation": "IND",
"title": "India"
},
"state": null,
"city": "",
"zip": "",
"altAddress1": "",
"altAddress2": "",
"altCity": "",
"altZip": "",
"phone": "7412589635",
"sendTextAlerts": false,
"sendTextAlertsDate": null,
"email": "ag@hyperspaceventures.com",
"emergencyContactName": "",
"emergencyContactPhone": "",
"profileImage": "https://images.pickleball.com/8onESjOriMbFEwWoiqyKtlJiFDIIy8.png",
"nickname": "",
"facebook": "",
"snapchat": "",
"twitter": "",
"youtube": "",
"instagram": "",
"linikedIn": "",
"dateCreated": "2022-11-15T14:05:00.764Z",
"createdByFullName": "",
"dateUpdated": null,
"updatedByFullName": "",
"dateDisabled": null,
"disabledByFullName": "",
"phoneAreaCode": "",
"emergencyContactPhoneAreaCode": "",
"languageFamilyId": "1",
"handed": "",
"heightFeet": "0",
"heightInches": "0",
"showAgeToPublic": false,
"unsubscribeEmarketingPickleball": false,
"unsubscribeEmarketing3rdParty": false,
"dateClaimed": "2022-11-15T14:05:21.390Z",
"timezone": null,
"platforms": [
{
"id": "1",
"name": "PickleballBrackets.com",
"platformUserUuid": "83661851-2316-494A-A37C-5E8C910B1964"
},
{
"id": "3",
"name": "Pickleball.com",
"platformUserUuid": "83661851-2316-494a-a37c-5e8c910b1964"
}
],
"governingBodies": [],
"altCountry": null,
"altState": null,
"totalFollowers": "0",
"totalFollowing": "0",
"isSubRecord": false,
"isTest": false,
"isCompleted": true,
"emergencyContactPhoneCountryId": "0",
"phoneCountryId": "231",
"createdForModuleUuid": "",
"selfSkillDoublesId": "0",
"selfSkillMixedId": "0",
"selfSkillSinglesId": "0",
"selfSkillSkinnySinglesId": "0",
"primaryClubUuid": "",
"pickleballUSAPAUTPRSingles": 0,
"pickleballUSAPAUTPRSkinnySingles": 0,
"pickleballUSAPAUTPRDoubles": 0,
"pickleballUSAPAUTPRMixed": 0,
"worldPickleballRatingSingles": 0,
"worldPickleballRatingDoubles": 0,
"worldPickleballRatingMixed": 0,
"geniusSportsSinglesUuid": "",
"duprId": "",
"duprDoubles": 0,
"duprSingles": 0,
"tiktok": "",
"showCityToPublic": false,
"showStateToPublic": false,
"showOnlyFirstInitialOfLastNameToPublic": false,
"proLevelId": "0",
"singleRating": 0,
"doublesRating": 0,
"mixedRating": 0,
"skinnySinglesRating": 0,
"numberOfPlayedSingleGames": 0,
"numberOfPlayedDoublesGames": 0,
"numberOfPlayedMixedGames": 0,
"numberOfPlayedSkinnySinglesGames": 0,
"pls": "",
"isAttendee": false,
"bio": "",
"sponsorImg": "",
"featuredImg": "",
"featuredVideo": "",
"representingCountry": null,
"turnedPro": null,
"canConfirmContent": false,
"canCreateContent": false,
"sponsors": [],
"images": [],
"biography": [],
"selfSkillDoubles": null,
"selfSkillMixed": null,
"selfSkillSingles": null,
"selfSkillSkinnySingles": null,
"pickleballUsapaNumber": "",
"pickleballCanadaNumber": "",
"pickleballLifetimeNumber": "",
"pickleballSsipaNumber": "",
"pickleballPaaNumber": ""
},
{
"uuid": "284dcb7e-35db-4f9c-b06a-3f4540231306",
"platformUuid": "284dcb7e-35db-4f9c-b06a-3f4540231306",
"firstName": "pn",
"lastName": "hyperspace",
"nameSuffix": "",
"gender": "",
"dob": "1987-01-09T23:00:00Z",
"address1": "rajkotq",
"address2": "",
"country": {
"id": "101",
"abbreviation": "IND",
"title": "India"
},
"state": null,
"city": "",
"zip": "",
"altAddress1": "",
"altAddress2": "",
"altCity": "",
"altZip": "",
"phone": "1234567890",
"sendTextAlerts": false,
"sendTextAlertsDate": null,
"email": "pn@hyperspaceventures.com",
"emergencyContactName": "",
"emergencyContactPhone": "",
"profileImage": "https://images.pickleball.com/JNEOghrKyLGelKpddjbNZkKRHfJkf3.png",
"nickname": "",
"facebook": "",
"snapchat": "",
"twitter": "",
"youtube": "",
"instagram": "",
"linikedIn": "",
"dateCreated": "2022-10-10T03:08:05.083Z",
"createdByFullName": "",
"dateUpdated": null,
"updatedByFullName": "",
"dateDisabled": null,
"disabledByFullName": "",
"phoneAreaCode": " 1",
"emergencyContactPhoneAreaCode": "",
"languageFamilyId": "1",
"handed": "",
"heightFeet": "0",
"heightInches": "0",
"showAgeToPublic": false,
"unsubscribeEmarketingPickleball": false,
"unsubscribeEmarketing3rdParty": false,
"dateClaimed": "2022-10-10T03:08:30.476Z",
"timezone": null,
"platforms": [
{
"id": "1",
"name": "PickleballBrackets.com",
"platformUserUuid": "284DCB7E-35DB-4F9C-B06A-3F4540231306"
},
{
"id": "3",
"name": "Pickleball.com",
"platformUserUuid": "284dcb7e-35db-4f9c-b06a-3f4540231306"
}
],
"governingBodies": [],
"altCountry": null,
"altState": null,
"totalFollowers": "0",
"totalFollowing": "0",
"isSubRecord": false,
"isTest": false,
"isCompleted": true,
"emergencyContactPhoneCountryId": "0",
"phoneCountryId": "231",
"createdForModuleUuid": "",
"selfSkillDoublesId": "0",
"selfSkillMixedId": "0",
"selfSkillSinglesId": "0",
"selfSkillSkinnySinglesId": "0",
"primaryClubUuid": "",
"pickleballUSAPAUTPRSingles": 0,
"pickleballUSAPAUTPRSkinnySingles": 0,
"pickleballUSAPAUTPRDoubles": 0,
"pickleballUSAPAUTPRMixed": 0,
"worldPickleballRatingSingles": 0,
"worldPickleballRatingDoubles": 0,
"worldPickleballRatingMixed": 0,
"geniusSportsSinglesUuid": "",
"duprId": "",
"duprDoubles": 0,
"duprSingles": 0,
"tiktok": "",
"showCityToPublic": false,
"showStateToPublic": false,
"showOnlyFirstInitialOfLastNameToPublic": false,
"proLevelId": "0",
"singleRating": 0,
"doublesRating": 0,
"mixedRating": 0,
"skinnySinglesRating": 0,
"numberOfPlayedSingleGames": 0,
"numberOfPlayedDoublesGames": 0,
"numberOfPlayedMixedGames": 0,
"numberOfPlayedSkinnySinglesGames": 0,
"pls": "",
"isAttendee": false,
"bio": "",
"sponsorImg": "",
"featuredImg": "",
"featuredVideo": "",
"representingCountry": null,
"turnedPro": null,
"canConfirmContent": false,
"canCreateContent": false,
"sponsors": [],
"images": [],
"biography": [],
"selfSkillDoubles": null,
"selfSkillMixed": null,
"selfSkillSingles": null,
"selfSkillSkinnySingles": null,
"pickleballUsapaNumber": "",
"pickleballCanadaNumber": "",
"pickleballLifetimeNumber": "",
"pickleballSsipaNumber": "",
"pickleballPaaNumber": ""
}
]
}