magic-events
Get Event Registrations
Retrieve all registrations for a specific Magic event, including user details, decklists, and queue group information. Results are ordered by registration completion time.
GET
/
api
/
v1
/
magic-events
/
{id}
/
registrations
/
Copy
[
{
"id": 123,
"user_identifier": "<string>",
"registration_status": "IN_PROGRESS",
"registration_completed_datetime": "2023-11-07T05:31:56Z",
"waitlisted_datetime": "2023-11-07T05:31:56Z",
"mark_as_paid": true,
"stripe_payment_intent_status": "SUCCEEDED",
"paypal_order_status": "CREATED",
"payment_method": "STRIPE",
"matches_won": -1,
"matches_lost": -1,
"matches_drawn": -1,
"total_match_points": -1,
"queue_check_in_status": "WAITING_FOR_CHECK_IN_REQUEST",
"queue_group_role": {
"id": 123,
"captain": true,
"queue_group": {}
},
"internal_notes": "<string>",
"fixed_seat": -1,
"has_byes_for_round_numbers": [
-1
],
"using_paper_decklist": true,
"user": {
"id": 123,
"captain": true,
"queue_group": {}
},
"decklist": {
"id": 123,
"captain": true,
"queue_group": {}
},
"magic_event": 123,
"final_place_in_standings": -1,
"paypal_order_id": "<string>"
}
]
Authorizations
API key in format: sk_*
Path Parameters
Response
200 - application/json
The response is of type object[]
.
Copy
[
{
"id": 123,
"user_identifier": "<string>",
"registration_status": "IN_PROGRESS",
"registration_completed_datetime": "2023-11-07T05:31:56Z",
"waitlisted_datetime": "2023-11-07T05:31:56Z",
"mark_as_paid": true,
"stripe_payment_intent_status": "SUCCEEDED",
"paypal_order_status": "CREATED",
"payment_method": "STRIPE",
"matches_won": -1,
"matches_lost": -1,
"matches_drawn": -1,
"total_match_points": -1,
"queue_check_in_status": "WAITING_FOR_CHECK_IN_REQUEST",
"queue_group_role": {
"id": 123,
"captain": true,
"queue_group": {}
},
"internal_notes": "<string>",
"fixed_seat": -1,
"has_byes_for_round_numbers": [
-1
],
"using_paper_decklist": true,
"user": {
"id": 123,
"captain": true,
"queue_group": {}
},
"decklist": {
"id": 123,
"captain": true,
"queue_group": {}
},
"magic_event": 123,
"final_place_in_standings": -1,
"paypal_order_id": "<string>"
}
]
Assistant
Responses are generated using AI and may contain mistakes.