forked from mvanhorn/printing-press-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools-manifest.json
More file actions
1957 lines (1957 loc) · 73.1 KB
/
Copy pathtools-manifest.json
File metadata and controls
1957 lines (1957 loc) · 73.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"api_name": "eventbrite",
"base_url": "https://www.eventbriteapi.com/v3",
"description": "Every Eventbrite organizer endpoint, plus a local SQLite mirror of your events, orders, and attendees you can search offline — the cross-event search Eventbrite removed, restored over your own data.",
"mcp_ready": "full",
"http_transport": "standard",
"mcp": {
"endpoint_tools": "hidden",
"orchestration": "code"
},
"auth": {
"type": "bearer_token",
"header": "Authorization",
"env_vars": [
"EVENTBRITE_API_KEY"
],
"env_var_specs": [
{
"name": "EVENTBRITE_API_KEY",
"kind": "per_call",
"required": true,
"sensitive": true,
"inferred": true
}
],
"key_url": "https://www.eventbrite.com/platform/api-keys"
},
"required_headers": [],
"tools": [
{
"name": "balance_events_remaining-balance",
"description": "Given an organization id and an event id returns an event-level balance specific to the time the endpoint is called. Required: public_organization_id, public_event_id.",
"method": "GET",
"path": "/balance/{public_organization_id}/events/{public_event_id}/",
"params": [
{
"name": "public_organization_id",
"type": "string",
"location": "path",
"description": "public_organization_id",
"required": true
},
{
"name": "public_event_id",
"type": "string",
"location": "path",
"description": "public_event_id",
"required": true
}
]
},
{
"name": "categories_category-by-id",
"description": "Gets a `category` by ID as ``category``. Required: id. Returns the CategoriesCategoryByIdResponse.",
"method": "GET",
"path": "/categories/{id}/",
"params": [
{
"name": "id",
"type": "string",
"location": "path",
"description": "Category ID",
"required": true
}
]
},
{
"name": "categories_list-of",
"description": "Returns a list of Category as categories, including subcategories nested. Returns a paginated response.",
"method": "GET",
"path": "/categories/",
"params": []
},
{
"name": "discounts_delete-a",
"description": "Delete a Discount. Only unused Discounts can be deleted. \u003cb\u003eWarning:\u003c/b\u003e A Discount cannot be restored after being deleted. Required: discount_id. Returns the DiscountsDeleteAResponse. Destructive.",
"method": "DELETE",
"path": "/discounts/{discount_id}/",
"params": [
{
"name": "discount_id",
"type": "string",
"location": "path",
"description": "Discount ID.",
"required": true
}
]
},
{
"name": "discounts_retrieve-a",
"description": "Retrieve a Discount by Discount ID. Required: discount_id. Returns the DiscountsRetrieveAResponse.",
"method": "GET",
"path": "/discounts/{discount_id}/",
"params": [
{
"name": "discount_id",
"type": "string",
"location": "path",
"description": "Discount ID.",
"required": true
}
]
},
{
"name": "discounts_update-a",
"description": "Update a Discount by Discount ID. Required: discount_id. Optional: discount. Returns the new DiscountsUpdateAResponse.",
"method": "POST",
"path": "/discounts/{discount_id}/",
"params": [
{
"name": "discount_id",
"type": "string",
"location": "path",
"description": "Discount ID.",
"required": true
},
{
"name": "discount",
"type": "object",
"location": "body",
"description": "Discount"
}
]
},
{
"name": "event_canned-questions_delete-default-question-by-id",
"description": "Deactivate a canned question for the event. Required: event_id, question_id. Returns the CannedQuestionsDeleteDefaultQuestionByIdResponse. Destructive.",
"method": "DELETE",
"path": "/event/{event_id}/canned_questions/{question_id}",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "question_id",
"type": "string",
"location": "path",
"description": "Canned Question ID.",
"required": true
}
]
},
{
"name": "event_canned-questions_get-default-question-by-id",
"description": "Retrieve a Canned Question by Event and Question ID. Required: event_id, question_id. Returns the CannedQuestionsGetDefaultQuestionByIdResponse.",
"method": "GET",
"path": "/event/{event_id}/canned_questions/{question_id}",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "question_id",
"type": "string",
"location": "path",
"description": "Canned Question ID.",
"required": true
}
]
},
{
"name": "event_canned-questions_update-default-question-by-id",
"description": "Modify details of the canned question of the event. Required: event_id, question_id. Returns the new CannedQuestionsUpdateDefaultQuestionByIdResponse.",
"method": "POST",
"path": "/event/{event_id}/canned_questions/{question_id}",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "question_id",
"type": "string",
"location": "path",
"description": "Canned Question ID.",
"required": true
}
]
},
{
"name": "events_delete-an",
"description": "Delete an Event if the delete is permitted. Returns a boolean indicating the success or failure of the delete action. To delete an Event, the Event must not have any pending or completed orders. If the event is a series parent, all series occurrences must be in a valid state to be deleted. Deleting the series parent will delete all series occurrences. Required: event_id. Destructive.",
"method": "DELETE",
"path": "/events/{event_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_retrieve-an",
"description": "Retrieve an Event by Event ID. \u003e **Note**: If the Event being retrieved was created using the new version of Create, then you may notice that the Event’s description field is now being used to hold the event summary. To retrieve your event’s fully-rendered HTML description, you will need to make an additional API call to retrieve the Event's full HTML description. Required: event_id. Returns the EventsRetrieveAnResponse.",
"method": "GET",
"path": "/events/{event_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_update-an",
"description": "Update Event by Event ID. Note that if the event is a series parent, updating `name`, `description`, `hide_start_date`, `hide_end_date`, `currency`, `show_remaining`, `password`, `capacity`, or `source` on the series parent will update these fields on all occurrences in the series. Required: event_id. Optional: event. Returns the new EventsUpdateAnResponse.",
"method": "POST",
"path": "/events/{event_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "event",
"type": "object",
"location": "body",
"description": "Event"
}
]
},
{
"name": "events_attendees_list-by-event",
"description": "List Attendees by Event ID. Returns a paginated response. Required: event_id.",
"method": "GET",
"path": "/events/{event_id}/attendees/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_attendees_retrieve-an",
"description": "Retrieve an Attendee by Attendee ID. Required: event_id, attendee_id. Returns the AttendeesRetrieveAnResponse.",
"method": "GET",
"path": "/events/{event_id}/attendees/{attendee_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "attendee_id",
"type": "string",
"location": "path",
"description": "Attendee ID.",
"required": true
}
]
},
{
"name": "events_cancel_an-event",
"description": "Cancel an Event. Returns a boolean indicating the success or failure of the cancel action. To cancel an Event, the Event must not have any pending or completed orders. If the event is a series parent, all series occurrences must be in a valid state to be canceled. Canceling the series parent will cancel all series occurrences. Required: event_id.",
"method": "POST",
"path": "/events/{event_id}/cancel/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_canned-questions_create-a-default-question-for-an-event",
"description": "Create a default Question for an Event. Returns the result as a `question` array. Required: event_id. Optional: Headers, question.",
"method": "POST",
"path": "/events/{event_id}/canned_questions/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "Headers",
"type": "string",
"location": "body",
"description": "Authorization: Bearer \u003cREDACTED_BEARER_TOKEN_EXAMPLE\u003e Content-Type: application/json"
},
{
"name": "question",
"type": "object",
"location": "body",
"description": "Question"
}
]
},
{
"name": "events_canned-questions_list-default-questions-by-event",
"description": "List default Questions by Event ID. Returns a paginated response. Required: event_id.",
"method": "GET",
"path": "/events/{event_id}/canned_questions/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_capacity-tier_retrieve-a",
"description": "Retrieve the capacity tier for an event. Required: event_id. Returns the CapacityTierRetrieveAResponse.",
"method": "GET",
"path": "/events/{event_id}/capacity_tier/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID",
"required": true
}
]
},
{
"name": "events_capacity-tier_update-a",
"description": "Update the capacity tier for an event. Partial updates are supported. Submit only attributes that are changed. These rules must apply when updating capacity tier: - Sum of `quantity_total` from capacity holds cannot exceed remaining capacity quantity - If the event is already oversold, new remaining capacity quantity cannot become further negative (oversold) To **create GA capacity hold inventory tiers** for an event, include payload with `holds`. `capacity_total` must be supplied if event does not have a capacity set. For example: ```json { 'capacity_total': 100, 'holds': [ { 'name': 'Marketing', 'quantity_total': 10, 'sort_order': 1, }, ] } ``` To **update/delete GA capacity hold inventory tiers** for an event, include payload with `holds` that contain `id` and fields of the hold tier to be updated. Deleting is the same as updating with `is_deleted` set to `true`. Deleting a hold tier that has tickets sold or associated with attendees will be denied. `quantity_total` for a hold tier cannot be reduced below the quantity used (`quantity_sold` + `quantity_pending`). Payload can contain partial data/partial hold inventory tiers to be updated/deleted. For example: ```json { 'holds': [ {'id': 'I987', 'name': 'Marketing'}, # update existing tier {'id': 'I988', 'is_deleted': true}, # delete existing tier {'name': 'Accounting', 'quantity_total': 10}, # create new tier ] } ```. Required: event_id. Optional: capacity_tier. Returns the new CapacityTierUpdateAResponse.",
"method": "POST",
"path": "/events/{event_id}/capacity_tier/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID",
"required": true
},
{
"name": "capacity_tier",
"type": "object",
"location": "body",
"description": "Capacity tier"
}
]
},
{
"name": "events_copy_an-event",
"description": "Copy the Event, creating a duplicate version of the Event with a new Event ID. Use to create a new Event based on an existing Event. Returns the Event object for the newly created Event. The Event payment options, payout method, refund policy, and tax settings will copy to the new Event. Required: event_id. Optional: end_date, name, start_date (plus 2 more).",
"method": "POST",
"path": "/events/{event_id}/copy/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "end_date",
"type": "string",
"location": "body",
"description": "01-31T13:00:00Z (datetime, optional) - The end time of the new event"
},
{
"name": "name",
"type": "string",
"location": "body",
"description": "The name of the new event"
},
{
"name": "start_date",
"type": "string",
"location": "body",
"description": "01-31T13:00:00Z (datetime, optional) - The start time of the new event"
},
{
"name": "summary",
"type": "string",
"location": "body",
"description": "The summary of the new event"
},
{
"name": "timezone",
"type": "string",
"location": "body",
"description": "Timezone for the new event (Olson format)"
}
]
},
{
"name": "events_description_retrieve-full-html",
"description": "Returns the fully rendered description for an Event as a string of HTML. This endpoint will work with events created using New or Classic Create. ```json { 'description: Example summary!\u003c/div\u003en \u003cP\u003eMy \u003cEM\u003eevent's\u003c/EM\u003e description would go \u003cSTRONG\u003ehere\u003c/STRONG\u003e.\u003c/P\u003e\u003c/div\u003e' } ``` #### Permissions `event.details:read`. Required: event_id.",
"method": "GET",
"path": "/events/{event_id}/description/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_display-settings_retrieve",
"description": "Retrieve the Display Settings for an Event by Event ID. Required: event_id. Returns the DisplaySettingsRetrieveResponse.",
"method": "GET",
"path": "/events/{event_id}/display_settings/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_display-settings_update",
"description": "Update Display Settings for an Event by Event ID. Required: event_id. Optional: display_settings. Returns the new DisplaySettingsUpdateResponse.",
"method": "POST",
"path": "/events/{event_id}/display_settings/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "display_settings",
"type": "object",
"location": "body",
"description": "Display settings"
}
]
},
{
"name": "events_inventory-tiers_delete-an",
"description": "Mark an existing Inventory Tier as deleted. Required: event_id, inventory_tier_id. Returns the InventoryTiersDeleteAnResponse. Destructive.",
"method": "DELETE",
"path": "/events/{event_id}/inventory_tiers/{inventory_tier_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID",
"required": true
},
{
"name": "inventory_tier_id",
"type": "string",
"location": "path",
"description": "Inventory Tier ID",
"required": true
}
]
},
{
"name": "events_inventory-tiers_list-by-event",
"description": "Retrieves inventory tiers for an event. Required: event_id. Returns the InventoryTiersListByEventResponse.",
"method": "GET",
"path": "/events/{event_id}/inventory_tiers/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID",
"required": true
}
]
},
{
"name": "events_inventory-tiers_retrieve-an",
"description": "Retrieve an Inventory Tier by ID for an Event. Required: event_id, inventory_tier_id. Returns the InventoryTiersRetrieveAnResponse.",
"method": "GET",
"path": "/events/{event_id}/inventory_tiers/{inventory_tier_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID",
"required": true
},
{
"name": "inventory_tier_id",
"type": "string",
"location": "path",
"description": "Inventory Tier ID",
"required": true
}
]
},
{
"name": "events_inventory-tiers_update-an",
"description": "Update an existing Inventory Iier by ID for an Event. Partial updates are supported. Submit only attributes that are changed. Required: event_id, inventory_tier_id. Optional: inventory_tier. Returns the new InventoryTiersUpdateAnResponse.",
"method": "POST",
"path": "/events/{event_id}/inventory_tiers/{inventory_tier_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID",
"required": true
},
{
"name": "inventory_tier_id",
"type": "string",
"location": "path",
"description": "Inventory Tier ID",
"required": true
},
{
"name": "inventory_tier",
"type": "object",
"location": "body",
"description": "Inventory tier"
}
]
},
{
"name": "events_inventory-tiers_update-multiple",
"description": "Update multiple existing Inventory Tiers for an Event. Partial updates are supported. Submit only attributes that are changed. Required: event_id. Optional: inventory_tiers. Returns the new InventoryTiersUpdateMultipleResponse.",
"method": "POST",
"path": "/events/{event_id}/inventory_tiers/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID",
"required": true
},
{
"name": "inventory_tiers",
"type": "array",
"location": "body",
"description": "Inventory tiers"
}
]
},
{
"name": "events_orders_list-by-event-id",
"description": "List Orders by Event ID. Returns a paginated response. Required: event_id.",
"method": "GET",
"path": "/events/{event_id}/orders/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_publish_an-event",
"description": "Publish an Event. In order for publish to be permitted, the event must have all necessary information, including a name and description, an organizer, at least one ticket, and valid payment options. This API endpoint will return argument errors for event fields that fail to validate the publish requirements. Returns a boolean indicating success or failure of the publish. If the event is a series parent, all occurrences in the series must be in a valid state to be published. Publishing the series parent will publish all series occurrences. Deleted Events can not be published. Required: event_id.",
"method": "POST",
"path": "/events/{event_id}/publish/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_questions_create-a-custom-for-an-event",
"description": "Create a custom Question for an Event. Returns the result as a `question` array. Required: event_id. Optional: Headers, question.",
"method": "POST",
"path": "/events/{event_id}/questions/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "Headers",
"type": "string",
"location": "body",
"description": "Authorization: Bearer \u003cREDACTED_BEARER_TOKEN_EXAMPLE\u003e Content-Type: application/json"
},
{
"name": "question",
"type": "object",
"location": "body",
"description": "Question"
}
]
},
{
"name": "events_questions_delete-a-custom-for-an-event",
"description": "Delete a custom Question by Event and Question ID. Required: event_id, question_id. Returns the QuestionsDeleteACustomForAnEventResponse. Destructive.",
"method": "DELETE",
"path": "/events/{event_id}/questions/{question_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "question_id",
"type": "string",
"location": "path",
"description": "Custom Question ID.",
"required": true
}
]
},
{
"name": "events_questions_get-custom-by-id",
"description": "Retrieve a Custom Question by Event and Question ID. Required: event_id, question_id. Returns the QuestionsGetCustomByIdResponse.",
"method": "GET",
"path": "/events/{event_id}/questions/{question_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "question_id",
"type": "string",
"location": "path",
"description": "Custom Question ID.",
"required": true
}
]
},
{
"name": "events_questions_list-custom-by-event",
"description": "List custom Questions by Event ID. Returns a paginated response, with a `question` array. Required: event_id.",
"method": "GET",
"path": "/events/{event_id}/questions/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_schedules_create-an-event",
"description": "Creating an event schedule requires that a series parent event has already been created. For instructions on how to create a series parent event, please refer to the [Create Event API](#events-create-api). Creating an event schedule will add occurrences to a series parent event, according to the pattern specified in the schedule. Each occurrence is backed by an [Event](#event_object), and will be associated with the series parent event specified in the request. If an occurrence specified by the schedule has the same date and time as an existing occurrence, the new occurrence is ignored and not created (the rest of the occurrences specified by the schedule are still created). Required: event_id. Optional: schedule. Returns the new SchedulesCreateAnEventResponse.",
"method": "POST",
"path": "/events/{event_id}/schedules/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID. Must be a valid series parent event.",
"required": true
},
{
"name": "schedule",
"type": "object",
"location": "body",
"description": "Schedule"
}
]
},
{
"name": "events_seatmaps_create-seat-map-for-event",
"description": "Create a Seat Map for a new reserved seating event by copying an existing seat map. Event must be a new reserved seating. Once a seat map is already created for the event, this endpoint will return error. [List Seat Maps by Organization](#list_seat_maps_for_organization) can be used to find source seat maps and their IDs. Required: event_id. Optional: source_seatmap_id. Returns the new SeatmapsCreateSeatMapForEventResponse.",
"method": "POST",
"path": "/events/{event_id}/seatmaps/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event Id",
"required": true
},
{
"name": "source_seatmap_id",
"type": "string",
"location": "body",
"description": "m1 (string, required) - ID of source Seat Map to copy data from."
}
]
},
{
"name": "events_structured-content_retrieve-latest-published-version-of-by-event-id",
"description": "Retrieve a paginated response of structured content for the given event `id`. This will retrieve the latest `published` version of the structured content. Therefore you must publish a version of the content before using this endpoint - aka send in `publish=true` with current set of modules to [Set Structured Content](#set-structured-content-by-event-id-and-version) endpoint. It will default to getting the structured content of the event listing page if no purpose is provided. Required: id. Returns the StructuredContentRetrieveLatestPublishedVersionOfByEventIdResponse.",
"method": "GET",
"path": "/events/{id}/structured_content/",
"params": [
{
"name": "id",
"type": "string",
"location": "path",
"description": "Event Id",
"required": true
}
]
},
{
"name": "events_structured-content_retrieve-latest-working-version-of-by-event-id",
"description": "Retrieve a paginated response of structured content for the given event `id`. This will retrieve the latest `working` version of the structured content - this means latest version that is either published or unpublished. It will default to getting the structured content of the event listing page if no purpose is provided. Required: id. Returns the StructuredContentRetrieveLatestWorkingVersionOfByEventIdResponse.",
"method": "GET",
"path": "/events/{id}/structured_content/edit/",
"params": [
{
"name": "id",
"type": "string",
"location": "path",
"description": "Event Id",
"required": true
}
]
},
{
"name": "events_structured-content_set-by-event-id-and-version",
"description": "Add new structured content to the event `id` for a specific `version` of structured content. This endpoint encapsulates both create and update for structured content. It will default to creating/updating the structured content for the listing page if no purpose is provided. Make sure to send in `publish=true` with current* set of modules. If you do not publish your structured content, then your most updated structured content will not be visible to public users looking at your event listing page - it will only be visible to you. From a technical perspective, [Get Latest Working Version of Structured Content by Event Id](#get-latest-working-version-of-structured-content-by-event-id) will return your most recent modules (published or unpublished), but [Get Latest Published Version of Structured Content by Event Id](#get-latest-publish-version-of-structured-content-by-event-id) will return only the latest structured content that has been published. * If you ONLY send in `publish=true` without the current set of modules, it will not work - modules will return as empty. Make sure to send in your most current modules AND `publish=true`. Required: id, version. Optional: access_type, modules, publish (plus 1 more). Returns the new StructuredContentSetByEventIdAndVersionResponse.",
"method": "POST",
"path": "/events/{id}/structured_content/{version}/",
"params": [
{
"name": "id",
"type": "string",
"location": "path",
"description": "Event Id",
"required": true
},
{
"name": "version",
"type": "string",
"location": "path",
"description": "Structured Content Version",
"required": true
},
{
"name": "access_type",
"type": "string",
"location": "body",
"description": "Access type"
},
{
"name": "modules",
"type": "array",
"location": "body",
"description": "Structured content modules."
},
{
"name": "publish",
"type": "bool",
"location": "body",
"description": "Boolean indicating whether to publish contents after saving."
},
{
"name": "purpose",
"type": "string",
"location": "body",
"description": "Purpose"
}
]
},
{
"name": "events_teams_create-a",
"description": "Create and returns a `team`. Required: event_id, public_event_id. Optional: name, password, preferred_start_time.",
"method": "POST",
"path": "/events/{event_id}/teams/create/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "The event ID that the team will be created from.",
"required": true
},
{
"name": "name",
"type": "string",
"location": "body",
"description": "Name of the team"
},
{
"name": "password",
"type": "string",
"location": "body",
"description": "Password of the team"
},
{
"name": "preferred_start_time",
"type": "string",
"location": "body",
"description": "Preferred start time the event"
},
{
"name": "public_event_id",
"type": "string",
"location": "body",
"description": "Public Event Id",
"required": true
}
]
},
{
"name": "events_teams_list-attendees-by",
"description": "Returns `attendee` for a single `team`. Returns a paginated response. Required: event_id, team_id.",
"method": "GET",
"path": "/events/{event_id}/teams/{team_id}/attendees/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "The event ID that the team will be retrieved from.",
"required": true
},
{
"name": "team_id",
"type": "string",
"location": "path",
"description": "The team ID that will be retrieved.",
"required": true
}
]
},
{
"name": "events_teams_list-by-event",
"description": "Returns a list of `teams` for the event. Returns a paginated response. Required: event_id.",
"method": "GET",
"path": "/events/{event_id}/teams/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "The event ID that the teams will be retrieved from.",
"required": true
}
]
},
{
"name": "events_teams_retrieve",
"description": "Returns information for a single `team`. Required: event_id, team_id.",
"method": "GET",
"path": "/events/{event_id}/teams/{team_id}/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "The event ID that the team will be retrieved from.",
"required": true
},
{
"name": "team_id",
"type": "string",
"location": "path",
"description": "The team ID that will be retrieved.",
"required": true
}
]
},
{
"name": "events_teams_search-by-name",
"description": "Returns the teams of an event searched by name. Returns a paginated response. Required: event_id, term.",
"method": "GET",
"path": "/events/{event_id}/teams/search/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "The event ID from which we want to search teams",
"required": true
},
{
"name": "term",
"type": "string",
"location": "path",
"description": "Search term.",
"required": true
}
]
},
{
"name": "events_teams_verify-password-for-a",
"description": "Verify that the password of a team is correct, and if so, and returns the token of the team. Required: event_id, team_id, password.",
"method": "POST",
"path": "/events/{event_id}/teams/{team_id}/check_password/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "The event ID of the team which the password will be checked",
"required": true
},
{
"name": "team_id",
"type": "string",
"location": "path",
"description": "The team ID which the password will be checked",
"required": true
},
{
"name": "password",
"type": "string",
"location": "body",
"description": "Password to verify",
"required": true
}
]
},
{
"name": "events_ticket-buyer-settings_retrieve-by-event",
"description": "Retrieve Ticket Buyer Settings by Event ID. Example: ```json { 'confirmation_message': { 'text': '\u003cH1\u003eConfirmation Message\u003c/H1\u003e', 'html': 'Confirmation Message' }, 'instructions': { 'text': '\u003cH1\u003eInstructions\u003c/H1\u003e', 'html': 'Instructions' }, 'sales_ended_message': { 'text': '\u003cH1\u003eSales Ended Message\u003c/H1\u003e', 'html': 'Sales Ended Message' }, 'survey_info': { 'text': '\u003cb\u003eFilling in this survey is required to attend the event\u003c/b\u003e', 'html': 'Filling in this survey is required to attend the event' }, 'event_id': '43253626762', 'survey_name': 'Registration Page Title', 'refund_request_enabled': true, 'allow_attendee_update': true, 'survey_time_limit': 15, 'redirect_url': null, 'survey_respondent': 'attendee', 'survey_ticket_classes': ['125', '374'] } ```. Required: event_id. Returns the TicketBuyerSettingsRetrieveByEventResponse.",
"method": "GET",
"path": "/events/{event_id}/ticket_buyer_settings/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
}
]
},
{
"name": "events_ticket-buyer-settings_update-for-an-event",
"description": "Update Ticket Buyer Settings by Event ID. Example: ```json { 'ticket_buyer_settings': { 'confirmation_message': { 'text': '\u003cH1\u003eConfirmation Message\u003c/H1\u003e', 'html': 'Confirmation Message' }, 'instructions': { 'text': '\u003cH1\u003eInstructions\u003c/H1\u003e', 'html': 'Instructions' }, 'sales_ended_message': { 'text': '\u003cH1\u003eSales Ended Message\u003c/H1\u003e', 'html': 'Sales Ended Message' }, 'survey_info': { 'text': '\u003cb\u003eFilling in this survey is required to attend the event\u003c/b\u003e', 'html': 'Filling in this survey is required to attend the event' }, 'event_id': '43253626762', 'survey_name': 'Registration Page Title', 'refund_request_enabled': true, 'allow_attendee_update': true, 'survey_time_limit': 15, 'redirect_url': null, 'survey_respondent': 'attendee', 'survey_ticket_classes': ['125', '374'] } } ```. Required: event_id. Optional: ticket_buyer_settings. Returns the new TicketBuyerSettingsUpdateForAnEventResponse.",
"method": "POST",
"path": "/events/{event_id}/ticket_buyer_settings/",
"params": [
{
"name": "event_id",
"type": "string",
"location": "path",
"description": "Event ID.",
"required": true
},
{
"name": "ticket_buyer_settings",
"type": "object",
"location": "body",
"description": "Ticket buyer settings"
}
]
},
{
"name": "events_ticket-classes_create-a-ticket-class",
"description": "Create a new Ticket Class. \u003e **Note:** After **May 7, 2020**, we will require you to provide an **inventory_tier_id** as part of your request for any **ticket_classes** you are creating or updating for a tiered event. For more information refer to our [changelog](https://www.eventbrite.com/platform/docs/changelog). \u003e **Add-On creation:** First you will need to create an [Add-On Inventory Tier](https://www.eventbrite.com/platform/api#/reference/inventory-tiers/create-an-inventory-tier) with **count_against_event_capacity** set to false and then provide the **inventory_tier_id** of the Add-On Inventory Tier when creating a new Ticket Class as part of your request. Required: event_id. Returns the new TicketClassesCreateATicketClassResponse.",
"method": "POST",
"path": "/events/{event_id}/ticket_classes/",