Attendee Events
Upsert Tournament Attendee Event Header
POST
/v1/tournament_attendee_event_headers/upsert
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"tournament_attendee_header_uuid": "d3f27af3-23eb-4877-8747-5b8bf398eef0",
"tournament_uuid": "",
"user_uuid": "Test",
"date_created": "2023-12-13T09:25:20.166Z",
"created_by_full_name": "John Doe",
"date_updated": "2023-12-13T09:25:20.166Z",
"updated_by_full_name": "Omar Petricevic",
"update_location": "Main Hall",
"promo_code": "ApplicablePromoCode",
"has_partner": true
}
}
Response
{
"result": {
"tournament_attendee_header_uuid": "d3f27af3-23eb-4877-8747-5b8bf398eef0",
"tournament_uuid": "",
"user_uuid": "Test",
"date_created": "2023-12-13T09:25:20.166Z",
"created_by_full_name": "John Doe",
"date_updated": "2023-12-13T09:25:20.166Z",
"updated_by_full_name": "Omar Petricevic",
"update_location": "Main Hall",
"promo_code": "ApplicablePromoCode",
"has_partner": true
}
}
Upsert Tournament Attendee Event Records
POST
/v1/tournament_attendee_event_records/upsert
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload": {
"tournament_attendee_event_uuid": "b6ab413b-c454-47e1-b7fc-52b6b94b3a8f",
"tournament_attendee_header_uuid": "Test",
"event_uuid": "Test",
"event_team_uuid": "Test",
"user_uuid": "Newest",
"date_created": "2023-12-13T09:25:20.166Z",
"created_by_full_name": "John Doe",
"date_updated": "2023-12-13T09:25:20.166Z",
"updated_by_full_name": "Omar Petricevic",
"status": 1,
"update_location": "Main Hall",
"player_group_id": 0,
"format_id": 0,
"original_event_uuid": "b2a3c4d5-6789-01ef-cdab-ef9876543210",
"tournament_partner_attendee_event_uuid": "Test",
"partner_user_uuid": "Test"
}
}
Response
{
"result": {
"tournament_attendee_event_uuid": "b6ab413b-c454-47e1-b7fc-52b6b94b3a8f",
"tournament_attendee_header_uuid": "Test",
"event_uuid": "Test",
"event_team_uuid": "Test",
"user_uuid": "Newest",
"date_created": "2023-12-13T09:25:20.166Z",
"created_by_full_name": "John Doe",
"date_updated": "2023-12-13T09:25:20.166Z",
"updated_by_full_name": "Omar Petricevic",
"status": 1,
"update_location": "Main Hall",
"player_group_id": 0,
"format_id": 0,
"original_event_uuid": "b2a3c4d5-6789-01ef-cdab-ef9876543210",
"tournament_partner_attendee_event_uuid": "Test",
"partner_user_uuid": "Test"
}
}
Upsert Tournament Event Attendee Standings
POST
/v1/tournament_event_final_standings/upsert
💡
This request requires “PB-API-TOKEN” from the platforms or “PB-USER-TOKEN” from the authenticated user.
Request
{
"payload":{
"event_uuid": "000562d9-612d-430a-b94b-23c948cf3163",
"team_uuid": "000341BB-7D1D-448B-AC4E-09782957F0F5",
"final_ranking":3,
"date_created": "2024-04-16T11:00:00.000Z",
"date_updated": "2024-05-16T12:00:00.000Z"
}
}
Response
{
"result": {
"event_uuid": "000562d9-612d-430a-b94b-23c948cf3163",
"team_uuid": "000341BB-7D1D-448B-AC4E-09782957F0F5",
"final_ranking": 3,
"date_created": "2024-04-16T11:00:00Z",
"date_updated": "2024-05-17T13:42:21.894463248Z"
}
}