@connectedxm/admin 6.7.8 → 6.8.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +414 -5
- package/dist/index.d.cts +271 -4
- package/dist/index.d.ts +271 -4
- package/dist/index.js +384 -5
- package/openapi.json +1251 -249
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -152,6 +152,10 @@
|
|
|
152
152
|
"name": "Events::Benefits",
|
|
153
153
|
"description": "Associate exclusive offers or discounts with events, providing special perks to attendees or members"
|
|
154
154
|
},
|
|
155
|
+
{
|
|
156
|
+
"name": "Events::Blocks",
|
|
157
|
+
"description": "Operations for events::blocks"
|
|
158
|
+
},
|
|
155
159
|
{
|
|
156
160
|
"name": "Events::Bypass",
|
|
157
161
|
"description": "Bypass standard registration requirements to grant direct access to events or passes, useful for comps, sponsors, or special circumstances"
|
|
@@ -16118,11 +16122,11 @@
|
|
|
16118
16122
|
]
|
|
16119
16123
|
}
|
|
16120
16124
|
},
|
|
16121
|
-
"/events/{eventId}/
|
|
16125
|
+
"/events/{eventId}/blocks": {
|
|
16122
16126
|
"get": {
|
|
16123
|
-
"operationId": "
|
|
16124
|
-
"summary": "Get Event
|
|
16125
|
-
"description": "Get Event
|
|
16127
|
+
"operationId": "GetEventBlocks",
|
|
16128
|
+
"summary": "Get Event Blocks",
|
|
16129
|
+
"description": "Get Event Blocks endpoint",
|
|
16126
16130
|
"parameters": [
|
|
16127
16131
|
{
|
|
16128
16132
|
"in": "path",
|
|
@@ -16194,7 +16198,10 @@
|
|
|
16194
16198
|
"example": "Success message."
|
|
16195
16199
|
},
|
|
16196
16200
|
"data": {
|
|
16197
|
-
"type": "
|
|
16201
|
+
"type": "array",
|
|
16202
|
+
"items": {
|
|
16203
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
16204
|
+
}
|
|
16198
16205
|
},
|
|
16199
16206
|
"count": {
|
|
16200
16207
|
"type": "integer",
|
|
@@ -16212,13 +16219,13 @@
|
|
|
16212
16219
|
}
|
|
16213
16220
|
},
|
|
16214
16221
|
"tags": [
|
|
16215
|
-
"Events::
|
|
16222
|
+
"Events::Blocks"
|
|
16216
16223
|
]
|
|
16217
16224
|
},
|
|
16218
16225
|
"post": {
|
|
16219
|
-
"operationId": "
|
|
16220
|
-
"summary": "Create Event
|
|
16221
|
-
"description": "Create Event
|
|
16226
|
+
"operationId": "CreateEventBlock",
|
|
16227
|
+
"summary": "Create Event Block",
|
|
16228
|
+
"description": "Create Event Block endpoint",
|
|
16222
16229
|
"parameters": [
|
|
16223
16230
|
{
|
|
16224
16231
|
"in": "path",
|
|
@@ -16235,7 +16242,7 @@
|
|
|
16235
16242
|
"content": {
|
|
16236
16243
|
"application/json": {
|
|
16237
16244
|
"schema": {
|
|
16238
|
-
"$ref": "#/components/schemas/
|
|
16245
|
+
"$ref": "#/components/schemas/EventBlockCreateInputs"
|
|
16239
16246
|
}
|
|
16240
16247
|
}
|
|
16241
16248
|
}
|
|
@@ -16259,7 +16266,7 @@
|
|
|
16259
16266
|
"example": "Success message."
|
|
16260
16267
|
},
|
|
16261
16268
|
"data": {
|
|
16262
|
-
"
|
|
16269
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
16263
16270
|
}
|
|
16264
16271
|
},
|
|
16265
16272
|
"required": [
|
|
@@ -16273,15 +16280,15 @@
|
|
|
16273
16280
|
}
|
|
16274
16281
|
},
|
|
16275
16282
|
"tags": [
|
|
16276
|
-
"Events::
|
|
16283
|
+
"Events::Blocks"
|
|
16277
16284
|
]
|
|
16278
16285
|
}
|
|
16279
16286
|
},
|
|
16280
|
-
"/events/{eventId}/
|
|
16287
|
+
"/events/{eventId}/blocks/{blockId}": {
|
|
16281
16288
|
"get": {
|
|
16282
|
-
"operationId": "
|
|
16283
|
-
"summary": "Get Event
|
|
16284
|
-
"description": "Get Event
|
|
16289
|
+
"operationId": "GetEventBlock",
|
|
16290
|
+
"summary": "Get Event Block",
|
|
16291
|
+
"description": "Get Event Block endpoint",
|
|
16285
16292
|
"parameters": [
|
|
16286
16293
|
{
|
|
16287
16294
|
"in": "path",
|
|
@@ -16294,11 +16301,11 @@
|
|
|
16294
16301
|
},
|
|
16295
16302
|
{
|
|
16296
16303
|
"in": "path",
|
|
16297
|
-
"name": "
|
|
16304
|
+
"name": "blockId",
|
|
16298
16305
|
"schema": {
|
|
16299
16306
|
"type": "string"
|
|
16300
16307
|
},
|
|
16301
|
-
"description": "The
|
|
16308
|
+
"description": "The block identifier",
|
|
16302
16309
|
"required": true
|
|
16303
16310
|
}
|
|
16304
16311
|
],
|
|
@@ -16321,7 +16328,7 @@
|
|
|
16321
16328
|
"example": "Success message."
|
|
16322
16329
|
},
|
|
16323
16330
|
"data": {
|
|
16324
|
-
"
|
|
16331
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
16325
16332
|
}
|
|
16326
16333
|
},
|
|
16327
16334
|
"required": [
|
|
@@ -16335,13 +16342,13 @@
|
|
|
16335
16342
|
}
|
|
16336
16343
|
},
|
|
16337
16344
|
"tags": [
|
|
16338
|
-
"Events::
|
|
16345
|
+
"Events::Blocks"
|
|
16339
16346
|
]
|
|
16340
16347
|
},
|
|
16341
16348
|
"put": {
|
|
16342
|
-
"operationId": "
|
|
16343
|
-
"summary": "Update Event
|
|
16344
|
-
"description": "Update Event
|
|
16349
|
+
"operationId": "UpdateEventBlock",
|
|
16350
|
+
"summary": "Update Event Block",
|
|
16351
|
+
"description": "Update Event Block endpoint",
|
|
16345
16352
|
"parameters": [
|
|
16346
16353
|
{
|
|
16347
16354
|
"in": "path",
|
|
@@ -16354,23 +16361,24 @@
|
|
|
16354
16361
|
},
|
|
16355
16362
|
{
|
|
16356
16363
|
"in": "path",
|
|
16357
|
-
"name": "
|
|
16364
|
+
"name": "blockId",
|
|
16358
16365
|
"schema": {
|
|
16359
16366
|
"type": "string"
|
|
16360
16367
|
},
|
|
16361
|
-
"description": "The
|
|
16362
|
-
"required": true
|
|
16363
|
-
},
|
|
16364
|
-
{
|
|
16365
|
-
"in": "query",
|
|
16366
|
-
"name": "page",
|
|
16367
|
-
"schema": {
|
|
16368
|
-
"$ref": "#/components/schemas/EventRegistrationBypassUpdateInputs"
|
|
16369
|
-
},
|
|
16370
|
-
"description": "Filter by page",
|
|
16368
|
+
"description": "The block identifier",
|
|
16371
16369
|
"required": true
|
|
16372
16370
|
}
|
|
16373
16371
|
],
|
|
16372
|
+
"requestBody": {
|
|
16373
|
+
"required": true,
|
|
16374
|
+
"content": {
|
|
16375
|
+
"application/json": {
|
|
16376
|
+
"schema": {
|
|
16377
|
+
"$ref": "#/components/schemas/EventBlockUpdateInputs"
|
|
16378
|
+
}
|
|
16379
|
+
}
|
|
16380
|
+
}
|
|
16381
|
+
},
|
|
16374
16382
|
"responses": {
|
|
16375
16383
|
"200": {
|
|
16376
16384
|
"description": "Successful response",
|
|
@@ -16390,7 +16398,7 @@
|
|
|
16390
16398
|
"example": "Success message."
|
|
16391
16399
|
},
|
|
16392
16400
|
"data": {
|
|
16393
|
-
"
|
|
16401
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
16394
16402
|
}
|
|
16395
16403
|
},
|
|
16396
16404
|
"required": [
|
|
@@ -16404,13 +16412,13 @@
|
|
|
16404
16412
|
}
|
|
16405
16413
|
},
|
|
16406
16414
|
"tags": [
|
|
16407
|
-
"Events::
|
|
16415
|
+
"Events::Blocks"
|
|
16408
16416
|
]
|
|
16409
16417
|
},
|
|
16410
16418
|
"delete": {
|
|
16411
|
-
"operationId": "
|
|
16412
|
-
"summary": "Delete Event
|
|
16413
|
-
"description": "Delete Event
|
|
16419
|
+
"operationId": "DeleteEventBlock",
|
|
16420
|
+
"summary": "Delete Event Block",
|
|
16421
|
+
"description": "Delete Event Block endpoint",
|
|
16414
16422
|
"parameters": [
|
|
16415
16423
|
{
|
|
16416
16424
|
"in": "path",
|
|
@@ -16423,11 +16431,11 @@
|
|
|
16423
16431
|
},
|
|
16424
16432
|
{
|
|
16425
16433
|
"in": "path",
|
|
16426
|
-
"name": "
|
|
16434
|
+
"name": "blockId",
|
|
16427
16435
|
"schema": {
|
|
16428
16436
|
"type": "string"
|
|
16429
16437
|
},
|
|
16430
|
-
"description": "The
|
|
16438
|
+
"description": "The block identifier",
|
|
16431
16439
|
"required": true
|
|
16432
16440
|
}
|
|
16433
16441
|
],
|
|
@@ -16464,15 +16472,15 @@
|
|
|
16464
16472
|
}
|
|
16465
16473
|
},
|
|
16466
16474
|
"tags": [
|
|
16467
|
-
"Events::
|
|
16475
|
+
"Events::Blocks"
|
|
16468
16476
|
]
|
|
16469
16477
|
}
|
|
16470
16478
|
},
|
|
16471
|
-
"/events/{eventId}/
|
|
16472
|
-
"
|
|
16473
|
-
"operationId": "
|
|
16474
|
-
"summary": "
|
|
16475
|
-
"description": "
|
|
16479
|
+
"/events/{eventId}/blocks/{blockId}/sessions": {
|
|
16480
|
+
"get": {
|
|
16481
|
+
"operationId": "GetEventBlockSessions",
|
|
16482
|
+
"summary": "Get Event Block Sessions",
|
|
16483
|
+
"description": "Get Event Block Sessions endpoint",
|
|
16476
16484
|
"parameters": [
|
|
16477
16485
|
{
|
|
16478
16486
|
"in": "path",
|
|
@@ -16482,68 +16490,14 @@
|
|
|
16482
16490
|
},
|
|
16483
16491
|
"description": "The event identifier",
|
|
16484
16492
|
"required": true
|
|
16485
|
-
}
|
|
16486
|
-
],
|
|
16487
|
-
"requestBody": {
|
|
16488
|
-
"required": true,
|
|
16489
|
-
"content": {
|
|
16490
|
-
"application/json": {
|
|
16491
|
-
"schema": {
|
|
16492
|
-
"$ref": "#/components/schemas/CloneOptions"
|
|
16493
|
-
}
|
|
16494
|
-
}
|
|
16495
|
-
}
|
|
16496
|
-
},
|
|
16497
|
-
"responses": {
|
|
16498
|
-
"200": {
|
|
16499
|
-
"description": "Successful response",
|
|
16500
|
-
"content": {
|
|
16501
|
-
"application/json": {
|
|
16502
|
-
"schema": {
|
|
16503
|
-
"type": "object",
|
|
16504
|
-
"properties": {
|
|
16505
|
-
"status": {
|
|
16506
|
-
"type": "string",
|
|
16507
|
-
"enum": [
|
|
16508
|
-
"ok"
|
|
16509
|
-
]
|
|
16510
|
-
},
|
|
16511
|
-
"message": {
|
|
16512
|
-
"type": "string",
|
|
16513
|
-
"example": "Success message."
|
|
16514
|
-
},
|
|
16515
|
-
"data": {
|
|
16516
|
-
"type": "object"
|
|
16517
|
-
}
|
|
16518
|
-
},
|
|
16519
|
-
"required": [
|
|
16520
|
-
"status",
|
|
16521
|
-
"message",
|
|
16522
|
-
"data"
|
|
16523
|
-
]
|
|
16524
|
-
}
|
|
16525
|
-
}
|
|
16526
|
-
}
|
|
16527
|
-
}
|
|
16528
|
-
},
|
|
16529
|
-
"tags": [
|
|
16530
|
-
"Events"
|
|
16531
|
-
]
|
|
16532
|
-
}
|
|
16533
|
-
},
|
|
16534
|
-
"/events/{eventId}/coHosts": {
|
|
16535
|
-
"get": {
|
|
16536
|
-
"operationId": "GetEventCoHosts",
|
|
16537
|
-
"summary": "Get Event Co Hosts",
|
|
16538
|
-
"description": "Get Event Co Hosts endpoint",
|
|
16539
|
-
"parameters": [
|
|
16493
|
+
},
|
|
16540
16494
|
{
|
|
16541
16495
|
"in": "path",
|
|
16542
|
-
"name": "
|
|
16496
|
+
"name": "blockId",
|
|
16543
16497
|
"schema": {
|
|
16544
16498
|
"type": "string"
|
|
16545
16499
|
},
|
|
16546
|
-
"description": "The
|
|
16500
|
+
"description": "The block identifier",
|
|
16547
16501
|
"required": true
|
|
16548
16502
|
},
|
|
16549
16503
|
{
|
|
@@ -16607,10 +16561,7 @@
|
|
|
16607
16561
|
"example": "Success message."
|
|
16608
16562
|
},
|
|
16609
16563
|
"data": {
|
|
16610
|
-
"type": "
|
|
16611
|
-
"items": {
|
|
16612
|
-
"$ref": "#/components/schemas/Account"
|
|
16613
|
-
}
|
|
16564
|
+
"type": "object"
|
|
16614
16565
|
},
|
|
16615
16566
|
"count": {
|
|
16616
16567
|
"type": "integer",
|
|
@@ -16628,15 +16579,15 @@
|
|
|
16628
16579
|
}
|
|
16629
16580
|
},
|
|
16630
16581
|
"tags": [
|
|
16631
|
-
"Events::
|
|
16582
|
+
"Events::Blocks"
|
|
16632
16583
|
]
|
|
16633
16584
|
}
|
|
16634
16585
|
},
|
|
16635
|
-
"/events/{eventId}/
|
|
16586
|
+
"/events/{eventId}/blocks/{blockId}/sessions/{sessionId}": {
|
|
16636
16587
|
"post": {
|
|
16637
|
-
"operationId": "
|
|
16638
|
-
"summary": "Add Event
|
|
16639
|
-
"description": "Add Event
|
|
16588
|
+
"operationId": "AddEventBlockSession",
|
|
16589
|
+
"summary": "Add Event Block Session",
|
|
16590
|
+
"description": "Add Event Block Session endpoint",
|
|
16640
16591
|
"parameters": [
|
|
16641
16592
|
{
|
|
16642
16593
|
"in": "path",
|
|
@@ -16649,11 +16600,20 @@
|
|
|
16649
16600
|
},
|
|
16650
16601
|
{
|
|
16651
16602
|
"in": "path",
|
|
16652
|
-
"name": "
|
|
16603
|
+
"name": "blockId",
|
|
16653
16604
|
"schema": {
|
|
16654
16605
|
"type": "string"
|
|
16655
16606
|
},
|
|
16656
|
-
"description": "The
|
|
16607
|
+
"description": "The block identifier",
|
|
16608
|
+
"required": true
|
|
16609
|
+
},
|
|
16610
|
+
{
|
|
16611
|
+
"in": "path",
|
|
16612
|
+
"name": "sessionId",
|
|
16613
|
+
"schema": {
|
|
16614
|
+
"type": "string"
|
|
16615
|
+
},
|
|
16616
|
+
"description": "The session identifier",
|
|
16657
16617
|
"required": true
|
|
16658
16618
|
}
|
|
16659
16619
|
],
|
|
@@ -16676,7 +16636,7 @@
|
|
|
16676
16636
|
"example": "Success message."
|
|
16677
16637
|
},
|
|
16678
16638
|
"data": {
|
|
16679
|
-
"$ref": "#/components/schemas/
|
|
16639
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
16680
16640
|
}
|
|
16681
16641
|
},
|
|
16682
16642
|
"required": [
|
|
@@ -16690,13 +16650,13 @@
|
|
|
16690
16650
|
}
|
|
16691
16651
|
},
|
|
16692
16652
|
"tags": [
|
|
16693
|
-
"Events::
|
|
16653
|
+
"Events::Blocks"
|
|
16694
16654
|
]
|
|
16695
16655
|
},
|
|
16696
16656
|
"delete": {
|
|
16697
|
-
"operationId": "
|
|
16698
|
-
"summary": "Remove Event
|
|
16699
|
-
"description": "Remove Event
|
|
16657
|
+
"operationId": "RemoveEventBlockSession",
|
|
16658
|
+
"summary": "Remove Event Block Session",
|
|
16659
|
+
"description": "Remove Event Block Session endpoint",
|
|
16700
16660
|
"parameters": [
|
|
16701
16661
|
{
|
|
16702
16662
|
"in": "path",
|
|
@@ -16709,11 +16669,20 @@
|
|
|
16709
16669
|
},
|
|
16710
16670
|
{
|
|
16711
16671
|
"in": "path",
|
|
16712
|
-
"name": "
|
|
16672
|
+
"name": "blockId",
|
|
16713
16673
|
"schema": {
|
|
16714
16674
|
"type": "string"
|
|
16715
16675
|
},
|
|
16716
|
-
"description": "The
|
|
16676
|
+
"description": "The block identifier",
|
|
16677
|
+
"required": true
|
|
16678
|
+
},
|
|
16679
|
+
{
|
|
16680
|
+
"in": "path",
|
|
16681
|
+
"name": "sessionId",
|
|
16682
|
+
"schema": {
|
|
16683
|
+
"type": "string"
|
|
16684
|
+
},
|
|
16685
|
+
"description": "The session identifier",
|
|
16717
16686
|
"required": true
|
|
16718
16687
|
}
|
|
16719
16688
|
],
|
|
@@ -16736,7 +16705,7 @@
|
|
|
16736
16705
|
"example": "Success message."
|
|
16737
16706
|
},
|
|
16738
16707
|
"data": {
|
|
16739
|
-
"$ref": "#/components/schemas/
|
|
16708
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
16740
16709
|
}
|
|
16741
16710
|
},
|
|
16742
16711
|
"required": [
|
|
@@ -16750,15 +16719,15 @@
|
|
|
16750
16719
|
}
|
|
16751
16720
|
},
|
|
16752
16721
|
"tags": [
|
|
16753
|
-
"Events::
|
|
16722
|
+
"Events::Blocks"
|
|
16754
16723
|
]
|
|
16755
16724
|
}
|
|
16756
16725
|
},
|
|
16757
|
-
"/events/{eventId}/
|
|
16726
|
+
"/events/{eventId}/bypass": {
|
|
16758
16727
|
"get": {
|
|
16759
|
-
"operationId": "
|
|
16760
|
-
"summary": "Get Event
|
|
16761
|
-
"description": "Get Event
|
|
16728
|
+
"operationId": "GetEventRegistrationBypassList",
|
|
16729
|
+
"summary": "Get Event Registration Bypass List",
|
|
16730
|
+
"description": "Get Event Registration Bypass List endpoint",
|
|
16762
16731
|
"parameters": [
|
|
16763
16732
|
{
|
|
16764
16733
|
"in": "path",
|
|
@@ -16769,24 +16738,6 @@
|
|
|
16769
16738
|
"description": "The event identifier",
|
|
16770
16739
|
"required": true
|
|
16771
16740
|
},
|
|
16772
|
-
{
|
|
16773
|
-
"in": "query",
|
|
16774
|
-
"name": "prePaid",
|
|
16775
|
-
"schema": {
|
|
16776
|
-
"type": "boolean"
|
|
16777
|
-
},
|
|
16778
|
-
"description": "Filter by prePaid",
|
|
16779
|
-
"required": false
|
|
16780
|
-
},
|
|
16781
|
-
{
|
|
16782
|
-
"in": "query",
|
|
16783
|
-
"name": "includeVariants",
|
|
16784
|
-
"schema": {
|
|
16785
|
-
"type": "object"
|
|
16786
|
-
},
|
|
16787
|
-
"description": "Filter by includeVariants",
|
|
16788
|
-
"required": false
|
|
16789
|
-
},
|
|
16790
16741
|
{
|
|
16791
16742
|
"in": "query",
|
|
16792
16743
|
"name": "page",
|
|
@@ -16848,10 +16799,7 @@
|
|
|
16848
16799
|
"example": "Success message."
|
|
16849
16800
|
},
|
|
16850
16801
|
"data": {
|
|
16851
|
-
"type": "
|
|
16852
|
-
"items": {
|
|
16853
|
-
"$ref": "#/components/schemas/Coupon"
|
|
16854
|
-
}
|
|
16802
|
+
"type": "object"
|
|
16855
16803
|
},
|
|
16856
16804
|
"count": {
|
|
16857
16805
|
"type": "integer",
|
|
@@ -16869,13 +16817,13 @@
|
|
|
16869
16817
|
}
|
|
16870
16818
|
},
|
|
16871
16819
|
"tags": [
|
|
16872
|
-
"Events::
|
|
16820
|
+
"Events::Bypass"
|
|
16873
16821
|
]
|
|
16874
16822
|
},
|
|
16875
16823
|
"post": {
|
|
16876
|
-
"operationId": "
|
|
16877
|
-
"summary": "Create Event
|
|
16878
|
-
"description": "Create Event
|
|
16824
|
+
"operationId": "CreateEventRegistrationBypass",
|
|
16825
|
+
"summary": "Create Event Registration Bypass",
|
|
16826
|
+
"description": "Create Event Registration Bypass endpoint",
|
|
16879
16827
|
"parameters": [
|
|
16880
16828
|
{
|
|
16881
16829
|
"in": "path",
|
|
@@ -16892,7 +16840,7 @@
|
|
|
16892
16840
|
"content": {
|
|
16893
16841
|
"application/json": {
|
|
16894
16842
|
"schema": {
|
|
16895
|
-
"$ref": "#/components/schemas/
|
|
16843
|
+
"$ref": "#/components/schemas/EventRegistrationBypassCreateInputs"
|
|
16896
16844
|
}
|
|
16897
16845
|
}
|
|
16898
16846
|
}
|
|
@@ -16916,7 +16864,7 @@
|
|
|
16916
16864
|
"example": "Success message."
|
|
16917
16865
|
},
|
|
16918
16866
|
"data": {
|
|
16919
|
-
"
|
|
16867
|
+
"type": "object"
|
|
16920
16868
|
}
|
|
16921
16869
|
},
|
|
16922
16870
|
"required": [
|
|
@@ -16930,15 +16878,15 @@
|
|
|
16930
16878
|
}
|
|
16931
16879
|
},
|
|
16932
16880
|
"tags": [
|
|
16933
|
-
"Events::
|
|
16881
|
+
"Events::Bypass"
|
|
16934
16882
|
]
|
|
16935
16883
|
}
|
|
16936
16884
|
},
|
|
16937
|
-
"/events/{eventId}/
|
|
16885
|
+
"/events/{eventId}/bypass/{bypassId}": {
|
|
16938
16886
|
"get": {
|
|
16939
|
-
"operationId": "
|
|
16940
|
-
"summary": "Get Event
|
|
16941
|
-
"description": "Get Event
|
|
16887
|
+
"operationId": "GetEventRegistrationBypass",
|
|
16888
|
+
"summary": "Get Event Registration Bypass",
|
|
16889
|
+
"description": "Get Event Registration Bypass endpoint",
|
|
16942
16890
|
"parameters": [
|
|
16943
16891
|
{
|
|
16944
16892
|
"in": "path",
|
|
@@ -16951,11 +16899,11 @@
|
|
|
16951
16899
|
},
|
|
16952
16900
|
{
|
|
16953
16901
|
"in": "path",
|
|
16954
|
-
"name": "
|
|
16902
|
+
"name": "bypassId",
|
|
16955
16903
|
"schema": {
|
|
16956
16904
|
"type": "string"
|
|
16957
16905
|
},
|
|
16958
|
-
"description": "The
|
|
16906
|
+
"description": "The bypass identifier",
|
|
16959
16907
|
"required": true
|
|
16960
16908
|
}
|
|
16961
16909
|
],
|
|
@@ -16978,7 +16926,7 @@
|
|
|
16978
16926
|
"example": "Success message."
|
|
16979
16927
|
},
|
|
16980
16928
|
"data": {
|
|
16981
|
-
"
|
|
16929
|
+
"type": "object"
|
|
16982
16930
|
}
|
|
16983
16931
|
},
|
|
16984
16932
|
"required": [
|
|
@@ -16992,13 +16940,13 @@
|
|
|
16992
16940
|
}
|
|
16993
16941
|
},
|
|
16994
16942
|
"tags": [
|
|
16995
|
-
"Events::
|
|
16943
|
+
"Events::Bypass"
|
|
16996
16944
|
]
|
|
16997
16945
|
},
|
|
16998
16946
|
"put": {
|
|
16999
|
-
"operationId": "
|
|
17000
|
-
"summary": "Update Event
|
|
17001
|
-
"description": "Update Event
|
|
16947
|
+
"operationId": "UpdateEventRegistrationBypass",
|
|
16948
|
+
"summary": "Update Event Registration Bypass",
|
|
16949
|
+
"description": "Update Event Registration Bypass endpoint",
|
|
17002
16950
|
"parameters": [
|
|
17003
16951
|
{
|
|
17004
16952
|
"in": "path",
|
|
@@ -17011,24 +16959,23 @@
|
|
|
17011
16959
|
},
|
|
17012
16960
|
{
|
|
17013
16961
|
"in": "path",
|
|
17014
|
-
"name": "
|
|
16962
|
+
"name": "bypassId",
|
|
17015
16963
|
"schema": {
|
|
17016
16964
|
"type": "string"
|
|
17017
16965
|
},
|
|
17018
|
-
"description": "The
|
|
16966
|
+
"description": "The bypass identifier",
|
|
16967
|
+
"required": true
|
|
16968
|
+
},
|
|
16969
|
+
{
|
|
16970
|
+
"in": "query",
|
|
16971
|
+
"name": "page",
|
|
16972
|
+
"schema": {
|
|
16973
|
+
"$ref": "#/components/schemas/EventRegistrationBypassUpdateInputs"
|
|
16974
|
+
},
|
|
16975
|
+
"description": "Filter by page",
|
|
17019
16976
|
"required": true
|
|
17020
16977
|
}
|
|
17021
16978
|
],
|
|
17022
|
-
"requestBody": {
|
|
17023
|
-
"required": true,
|
|
17024
|
-
"content": {
|
|
17025
|
-
"application/json": {
|
|
17026
|
-
"schema": {
|
|
17027
|
-
"$ref": "#/components/schemas/EventCouponUpdateInputs"
|
|
17028
|
-
}
|
|
17029
|
-
}
|
|
17030
|
-
}
|
|
17031
|
-
},
|
|
17032
16979
|
"responses": {
|
|
17033
16980
|
"200": {
|
|
17034
16981
|
"description": "Successful response",
|
|
@@ -17048,7 +16995,7 @@
|
|
|
17048
16995
|
"example": "Success message."
|
|
17049
16996
|
},
|
|
17050
16997
|
"data": {
|
|
17051
|
-
"
|
|
16998
|
+
"type": "object"
|
|
17052
16999
|
}
|
|
17053
17000
|
},
|
|
17054
17001
|
"required": [
|
|
@@ -17062,13 +17009,13 @@
|
|
|
17062
17009
|
}
|
|
17063
17010
|
},
|
|
17064
17011
|
"tags": [
|
|
17065
|
-
"Events::
|
|
17012
|
+
"Events::Bypass"
|
|
17066
17013
|
]
|
|
17067
17014
|
},
|
|
17068
17015
|
"delete": {
|
|
17069
|
-
"operationId": "
|
|
17070
|
-
"summary": "Delete Event
|
|
17071
|
-
"description": "Delete Event
|
|
17016
|
+
"operationId": "DeleteEventRegistrationBypass",
|
|
17017
|
+
"summary": "Delete Event Registration Bypass",
|
|
17018
|
+
"description": "Delete Event Registration Bypass endpoint",
|
|
17072
17019
|
"parameters": [
|
|
17073
17020
|
{
|
|
17074
17021
|
"in": "path",
|
|
@@ -17081,11 +17028,669 @@
|
|
|
17081
17028
|
},
|
|
17082
17029
|
{
|
|
17083
17030
|
"in": "path",
|
|
17084
|
-
"name": "
|
|
17031
|
+
"name": "bypassId",
|
|
17085
17032
|
"schema": {
|
|
17086
17033
|
"type": "string"
|
|
17087
17034
|
},
|
|
17088
|
-
"description": "The
|
|
17035
|
+
"description": "The bypass identifier",
|
|
17036
|
+
"required": true
|
|
17037
|
+
}
|
|
17038
|
+
],
|
|
17039
|
+
"responses": {
|
|
17040
|
+
"200": {
|
|
17041
|
+
"description": "Successful response",
|
|
17042
|
+
"content": {
|
|
17043
|
+
"application/json": {
|
|
17044
|
+
"schema": {
|
|
17045
|
+
"type": "object",
|
|
17046
|
+
"properties": {
|
|
17047
|
+
"status": {
|
|
17048
|
+
"type": "string",
|
|
17049
|
+
"enum": [
|
|
17050
|
+
"ok"
|
|
17051
|
+
]
|
|
17052
|
+
},
|
|
17053
|
+
"message": {
|
|
17054
|
+
"type": "string",
|
|
17055
|
+
"example": "Success message."
|
|
17056
|
+
},
|
|
17057
|
+
"data": {
|
|
17058
|
+
"nullable": true
|
|
17059
|
+
}
|
|
17060
|
+
},
|
|
17061
|
+
"required": [
|
|
17062
|
+
"status",
|
|
17063
|
+
"message",
|
|
17064
|
+
"data"
|
|
17065
|
+
]
|
|
17066
|
+
}
|
|
17067
|
+
}
|
|
17068
|
+
}
|
|
17069
|
+
}
|
|
17070
|
+
},
|
|
17071
|
+
"tags": [
|
|
17072
|
+
"Events::Bypass"
|
|
17073
|
+
]
|
|
17074
|
+
}
|
|
17075
|
+
},
|
|
17076
|
+
"/events/{eventId}/clone": {
|
|
17077
|
+
"post": {
|
|
17078
|
+
"operationId": "CloneEvent",
|
|
17079
|
+
"summary": "Clone Event",
|
|
17080
|
+
"description": "Clone Event endpoint",
|
|
17081
|
+
"parameters": [
|
|
17082
|
+
{
|
|
17083
|
+
"in": "path",
|
|
17084
|
+
"name": "eventId",
|
|
17085
|
+
"schema": {
|
|
17086
|
+
"type": "string"
|
|
17087
|
+
},
|
|
17088
|
+
"description": "The event identifier",
|
|
17089
|
+
"required": true
|
|
17090
|
+
}
|
|
17091
|
+
],
|
|
17092
|
+
"requestBody": {
|
|
17093
|
+
"required": true,
|
|
17094
|
+
"content": {
|
|
17095
|
+
"application/json": {
|
|
17096
|
+
"schema": {
|
|
17097
|
+
"$ref": "#/components/schemas/CloneOptions"
|
|
17098
|
+
}
|
|
17099
|
+
}
|
|
17100
|
+
}
|
|
17101
|
+
},
|
|
17102
|
+
"responses": {
|
|
17103
|
+
"200": {
|
|
17104
|
+
"description": "Successful response",
|
|
17105
|
+
"content": {
|
|
17106
|
+
"application/json": {
|
|
17107
|
+
"schema": {
|
|
17108
|
+
"type": "object",
|
|
17109
|
+
"properties": {
|
|
17110
|
+
"status": {
|
|
17111
|
+
"type": "string",
|
|
17112
|
+
"enum": [
|
|
17113
|
+
"ok"
|
|
17114
|
+
]
|
|
17115
|
+
},
|
|
17116
|
+
"message": {
|
|
17117
|
+
"type": "string",
|
|
17118
|
+
"example": "Success message."
|
|
17119
|
+
},
|
|
17120
|
+
"data": {
|
|
17121
|
+
"type": "object"
|
|
17122
|
+
}
|
|
17123
|
+
},
|
|
17124
|
+
"required": [
|
|
17125
|
+
"status",
|
|
17126
|
+
"message",
|
|
17127
|
+
"data"
|
|
17128
|
+
]
|
|
17129
|
+
}
|
|
17130
|
+
}
|
|
17131
|
+
}
|
|
17132
|
+
}
|
|
17133
|
+
},
|
|
17134
|
+
"tags": [
|
|
17135
|
+
"Events"
|
|
17136
|
+
]
|
|
17137
|
+
}
|
|
17138
|
+
},
|
|
17139
|
+
"/events/{eventId}/coHosts": {
|
|
17140
|
+
"get": {
|
|
17141
|
+
"operationId": "GetEventCoHosts",
|
|
17142
|
+
"summary": "Get Event Co Hosts",
|
|
17143
|
+
"description": "Get Event Co Hosts endpoint",
|
|
17144
|
+
"parameters": [
|
|
17145
|
+
{
|
|
17146
|
+
"in": "path",
|
|
17147
|
+
"name": "eventId",
|
|
17148
|
+
"schema": {
|
|
17149
|
+
"type": "string"
|
|
17150
|
+
},
|
|
17151
|
+
"description": "The event identifier",
|
|
17152
|
+
"required": true
|
|
17153
|
+
},
|
|
17154
|
+
{
|
|
17155
|
+
"in": "query",
|
|
17156
|
+
"name": "page",
|
|
17157
|
+
"schema": {
|
|
17158
|
+
"type": "integer",
|
|
17159
|
+
"minimum": 1,
|
|
17160
|
+
"default": 1
|
|
17161
|
+
},
|
|
17162
|
+
"description": "Page number",
|
|
17163
|
+
"required": false
|
|
17164
|
+
},
|
|
17165
|
+
{
|
|
17166
|
+
"in": "query",
|
|
17167
|
+
"name": "pageSize",
|
|
17168
|
+
"schema": {
|
|
17169
|
+
"type": "integer",
|
|
17170
|
+
"minimum": 1,
|
|
17171
|
+
"maximum": 100,
|
|
17172
|
+
"default": 25
|
|
17173
|
+
},
|
|
17174
|
+
"description": "Number of items per page",
|
|
17175
|
+
"required": false
|
|
17176
|
+
},
|
|
17177
|
+
{
|
|
17178
|
+
"in": "query",
|
|
17179
|
+
"name": "orderBy",
|
|
17180
|
+
"schema": {
|
|
17181
|
+
"type": "string"
|
|
17182
|
+
},
|
|
17183
|
+
"description": "Field to order by",
|
|
17184
|
+
"required": false
|
|
17185
|
+
},
|
|
17186
|
+
{
|
|
17187
|
+
"in": "query",
|
|
17188
|
+
"name": "search",
|
|
17189
|
+
"schema": {
|
|
17190
|
+
"type": "string"
|
|
17191
|
+
},
|
|
17192
|
+
"description": "Search query",
|
|
17193
|
+
"required": false
|
|
17194
|
+
}
|
|
17195
|
+
],
|
|
17196
|
+
"responses": {
|
|
17197
|
+
"200": {
|
|
17198
|
+
"description": "Successful response",
|
|
17199
|
+
"content": {
|
|
17200
|
+
"application/json": {
|
|
17201
|
+
"schema": {
|
|
17202
|
+
"type": "object",
|
|
17203
|
+
"properties": {
|
|
17204
|
+
"status": {
|
|
17205
|
+
"type": "string",
|
|
17206
|
+
"enum": [
|
|
17207
|
+
"ok"
|
|
17208
|
+
]
|
|
17209
|
+
},
|
|
17210
|
+
"message": {
|
|
17211
|
+
"type": "string",
|
|
17212
|
+
"example": "Success message."
|
|
17213
|
+
},
|
|
17214
|
+
"data": {
|
|
17215
|
+
"type": "array",
|
|
17216
|
+
"items": {
|
|
17217
|
+
"$ref": "#/components/schemas/Account"
|
|
17218
|
+
}
|
|
17219
|
+
},
|
|
17220
|
+
"count": {
|
|
17221
|
+
"type": "integer",
|
|
17222
|
+
"example": 100
|
|
17223
|
+
}
|
|
17224
|
+
},
|
|
17225
|
+
"required": [
|
|
17226
|
+
"status",
|
|
17227
|
+
"message",
|
|
17228
|
+
"data"
|
|
17229
|
+
]
|
|
17230
|
+
}
|
|
17231
|
+
}
|
|
17232
|
+
}
|
|
17233
|
+
}
|
|
17234
|
+
},
|
|
17235
|
+
"tags": [
|
|
17236
|
+
"Events::Cohosts"
|
|
17237
|
+
]
|
|
17238
|
+
}
|
|
17239
|
+
},
|
|
17240
|
+
"/events/{eventId}/coHosts/{accountId}": {
|
|
17241
|
+
"post": {
|
|
17242
|
+
"operationId": "AddEventCoHost",
|
|
17243
|
+
"summary": "Add Event Co Host",
|
|
17244
|
+
"description": "Add Event Co Host endpoint",
|
|
17245
|
+
"parameters": [
|
|
17246
|
+
{
|
|
17247
|
+
"in": "path",
|
|
17248
|
+
"name": "eventId",
|
|
17249
|
+
"schema": {
|
|
17250
|
+
"type": "string"
|
|
17251
|
+
},
|
|
17252
|
+
"description": "The event identifier",
|
|
17253
|
+
"required": true
|
|
17254
|
+
},
|
|
17255
|
+
{
|
|
17256
|
+
"in": "path",
|
|
17257
|
+
"name": "accountId",
|
|
17258
|
+
"schema": {
|
|
17259
|
+
"type": "string"
|
|
17260
|
+
},
|
|
17261
|
+
"description": "The account identifier",
|
|
17262
|
+
"required": true
|
|
17263
|
+
}
|
|
17264
|
+
],
|
|
17265
|
+
"responses": {
|
|
17266
|
+
"200": {
|
|
17267
|
+
"description": "Successful response",
|
|
17268
|
+
"content": {
|
|
17269
|
+
"application/json": {
|
|
17270
|
+
"schema": {
|
|
17271
|
+
"type": "object",
|
|
17272
|
+
"properties": {
|
|
17273
|
+
"status": {
|
|
17274
|
+
"type": "string",
|
|
17275
|
+
"enum": [
|
|
17276
|
+
"ok"
|
|
17277
|
+
]
|
|
17278
|
+
},
|
|
17279
|
+
"message": {
|
|
17280
|
+
"type": "string",
|
|
17281
|
+
"example": "Success message."
|
|
17282
|
+
},
|
|
17283
|
+
"data": {
|
|
17284
|
+
"$ref": "#/components/schemas/Account"
|
|
17285
|
+
}
|
|
17286
|
+
},
|
|
17287
|
+
"required": [
|
|
17288
|
+
"status",
|
|
17289
|
+
"message",
|
|
17290
|
+
"data"
|
|
17291
|
+
]
|
|
17292
|
+
}
|
|
17293
|
+
}
|
|
17294
|
+
}
|
|
17295
|
+
}
|
|
17296
|
+
},
|
|
17297
|
+
"tags": [
|
|
17298
|
+
"Events::Cohosts"
|
|
17299
|
+
]
|
|
17300
|
+
},
|
|
17301
|
+
"delete": {
|
|
17302
|
+
"operationId": "RemoveEventCoHost",
|
|
17303
|
+
"summary": "Remove Event Co Host",
|
|
17304
|
+
"description": "Remove Event Co Host endpoint",
|
|
17305
|
+
"parameters": [
|
|
17306
|
+
{
|
|
17307
|
+
"in": "path",
|
|
17308
|
+
"name": "eventId",
|
|
17309
|
+
"schema": {
|
|
17310
|
+
"type": "string"
|
|
17311
|
+
},
|
|
17312
|
+
"description": "The event identifier",
|
|
17313
|
+
"required": true
|
|
17314
|
+
},
|
|
17315
|
+
{
|
|
17316
|
+
"in": "path",
|
|
17317
|
+
"name": "accountId",
|
|
17318
|
+
"schema": {
|
|
17319
|
+
"type": "string"
|
|
17320
|
+
},
|
|
17321
|
+
"description": "The account identifier",
|
|
17322
|
+
"required": true
|
|
17323
|
+
}
|
|
17324
|
+
],
|
|
17325
|
+
"responses": {
|
|
17326
|
+
"200": {
|
|
17327
|
+
"description": "Successful response",
|
|
17328
|
+
"content": {
|
|
17329
|
+
"application/json": {
|
|
17330
|
+
"schema": {
|
|
17331
|
+
"type": "object",
|
|
17332
|
+
"properties": {
|
|
17333
|
+
"status": {
|
|
17334
|
+
"type": "string",
|
|
17335
|
+
"enum": [
|
|
17336
|
+
"ok"
|
|
17337
|
+
]
|
|
17338
|
+
},
|
|
17339
|
+
"message": {
|
|
17340
|
+
"type": "string",
|
|
17341
|
+
"example": "Success message."
|
|
17342
|
+
},
|
|
17343
|
+
"data": {
|
|
17344
|
+
"$ref": "#/components/schemas/Account"
|
|
17345
|
+
}
|
|
17346
|
+
},
|
|
17347
|
+
"required": [
|
|
17348
|
+
"status",
|
|
17349
|
+
"message",
|
|
17350
|
+
"data"
|
|
17351
|
+
]
|
|
17352
|
+
}
|
|
17353
|
+
}
|
|
17354
|
+
}
|
|
17355
|
+
}
|
|
17356
|
+
},
|
|
17357
|
+
"tags": [
|
|
17358
|
+
"Events::Cohosts"
|
|
17359
|
+
]
|
|
17360
|
+
}
|
|
17361
|
+
},
|
|
17362
|
+
"/events/{eventId}/coupons": {
|
|
17363
|
+
"get": {
|
|
17364
|
+
"operationId": "GetEventCoupons",
|
|
17365
|
+
"summary": "Get Event Coupons",
|
|
17366
|
+
"description": "Get Event Coupons endpoint",
|
|
17367
|
+
"parameters": [
|
|
17368
|
+
{
|
|
17369
|
+
"in": "path",
|
|
17370
|
+
"name": "eventId",
|
|
17371
|
+
"schema": {
|
|
17372
|
+
"type": "string"
|
|
17373
|
+
},
|
|
17374
|
+
"description": "The event identifier",
|
|
17375
|
+
"required": true
|
|
17376
|
+
},
|
|
17377
|
+
{
|
|
17378
|
+
"in": "query",
|
|
17379
|
+
"name": "prePaid",
|
|
17380
|
+
"schema": {
|
|
17381
|
+
"type": "boolean"
|
|
17382
|
+
},
|
|
17383
|
+
"description": "Filter by prePaid",
|
|
17384
|
+
"required": false
|
|
17385
|
+
},
|
|
17386
|
+
{
|
|
17387
|
+
"in": "query",
|
|
17388
|
+
"name": "includeVariants",
|
|
17389
|
+
"schema": {
|
|
17390
|
+
"type": "object"
|
|
17391
|
+
},
|
|
17392
|
+
"description": "Filter by includeVariants",
|
|
17393
|
+
"required": false
|
|
17394
|
+
},
|
|
17395
|
+
{
|
|
17396
|
+
"in": "query",
|
|
17397
|
+
"name": "page",
|
|
17398
|
+
"schema": {
|
|
17399
|
+
"type": "integer",
|
|
17400
|
+
"minimum": 1,
|
|
17401
|
+
"default": 1
|
|
17402
|
+
},
|
|
17403
|
+
"description": "Page number",
|
|
17404
|
+
"required": false
|
|
17405
|
+
},
|
|
17406
|
+
{
|
|
17407
|
+
"in": "query",
|
|
17408
|
+
"name": "pageSize",
|
|
17409
|
+
"schema": {
|
|
17410
|
+
"type": "integer",
|
|
17411
|
+
"minimum": 1,
|
|
17412
|
+
"maximum": 100,
|
|
17413
|
+
"default": 25
|
|
17414
|
+
},
|
|
17415
|
+
"description": "Number of items per page",
|
|
17416
|
+
"required": false
|
|
17417
|
+
},
|
|
17418
|
+
{
|
|
17419
|
+
"in": "query",
|
|
17420
|
+
"name": "orderBy",
|
|
17421
|
+
"schema": {
|
|
17422
|
+
"type": "string"
|
|
17423
|
+
},
|
|
17424
|
+
"description": "Field to order by",
|
|
17425
|
+
"required": false
|
|
17426
|
+
},
|
|
17427
|
+
{
|
|
17428
|
+
"in": "query",
|
|
17429
|
+
"name": "search",
|
|
17430
|
+
"schema": {
|
|
17431
|
+
"type": "string"
|
|
17432
|
+
},
|
|
17433
|
+
"description": "Search query",
|
|
17434
|
+
"required": false
|
|
17435
|
+
}
|
|
17436
|
+
],
|
|
17437
|
+
"responses": {
|
|
17438
|
+
"200": {
|
|
17439
|
+
"description": "Successful response",
|
|
17440
|
+
"content": {
|
|
17441
|
+
"application/json": {
|
|
17442
|
+
"schema": {
|
|
17443
|
+
"type": "object",
|
|
17444
|
+
"properties": {
|
|
17445
|
+
"status": {
|
|
17446
|
+
"type": "string",
|
|
17447
|
+
"enum": [
|
|
17448
|
+
"ok"
|
|
17449
|
+
]
|
|
17450
|
+
},
|
|
17451
|
+
"message": {
|
|
17452
|
+
"type": "string",
|
|
17453
|
+
"example": "Success message."
|
|
17454
|
+
},
|
|
17455
|
+
"data": {
|
|
17456
|
+
"type": "array",
|
|
17457
|
+
"items": {
|
|
17458
|
+
"$ref": "#/components/schemas/Coupon"
|
|
17459
|
+
}
|
|
17460
|
+
},
|
|
17461
|
+
"count": {
|
|
17462
|
+
"type": "integer",
|
|
17463
|
+
"example": 100
|
|
17464
|
+
}
|
|
17465
|
+
},
|
|
17466
|
+
"required": [
|
|
17467
|
+
"status",
|
|
17468
|
+
"message",
|
|
17469
|
+
"data"
|
|
17470
|
+
]
|
|
17471
|
+
}
|
|
17472
|
+
}
|
|
17473
|
+
}
|
|
17474
|
+
}
|
|
17475
|
+
},
|
|
17476
|
+
"tags": [
|
|
17477
|
+
"Events::Coupons"
|
|
17478
|
+
]
|
|
17479
|
+
},
|
|
17480
|
+
"post": {
|
|
17481
|
+
"operationId": "CreateEventCoupon",
|
|
17482
|
+
"summary": "Create Event Coupon",
|
|
17483
|
+
"description": "Create Event Coupon endpoint",
|
|
17484
|
+
"parameters": [
|
|
17485
|
+
{
|
|
17486
|
+
"in": "path",
|
|
17487
|
+
"name": "eventId",
|
|
17488
|
+
"schema": {
|
|
17489
|
+
"type": "string"
|
|
17490
|
+
},
|
|
17491
|
+
"description": "The event identifier",
|
|
17492
|
+
"required": true
|
|
17493
|
+
}
|
|
17494
|
+
],
|
|
17495
|
+
"requestBody": {
|
|
17496
|
+
"required": true,
|
|
17497
|
+
"content": {
|
|
17498
|
+
"application/json": {
|
|
17499
|
+
"schema": {
|
|
17500
|
+
"$ref": "#/components/schemas/EventCouponCreateInputs"
|
|
17501
|
+
}
|
|
17502
|
+
}
|
|
17503
|
+
}
|
|
17504
|
+
},
|
|
17505
|
+
"responses": {
|
|
17506
|
+
"200": {
|
|
17507
|
+
"description": "Successful response",
|
|
17508
|
+
"content": {
|
|
17509
|
+
"application/json": {
|
|
17510
|
+
"schema": {
|
|
17511
|
+
"type": "object",
|
|
17512
|
+
"properties": {
|
|
17513
|
+
"status": {
|
|
17514
|
+
"type": "string",
|
|
17515
|
+
"enum": [
|
|
17516
|
+
"ok"
|
|
17517
|
+
]
|
|
17518
|
+
},
|
|
17519
|
+
"message": {
|
|
17520
|
+
"type": "string",
|
|
17521
|
+
"example": "Success message."
|
|
17522
|
+
},
|
|
17523
|
+
"data": {
|
|
17524
|
+
"$ref": "#/components/schemas/Coupon"
|
|
17525
|
+
}
|
|
17526
|
+
},
|
|
17527
|
+
"required": [
|
|
17528
|
+
"status",
|
|
17529
|
+
"message",
|
|
17530
|
+
"data"
|
|
17531
|
+
]
|
|
17532
|
+
}
|
|
17533
|
+
}
|
|
17534
|
+
}
|
|
17535
|
+
}
|
|
17536
|
+
},
|
|
17537
|
+
"tags": [
|
|
17538
|
+
"Events::Coupons"
|
|
17539
|
+
]
|
|
17540
|
+
}
|
|
17541
|
+
},
|
|
17542
|
+
"/events/{eventId}/coupons/{couponId}": {
|
|
17543
|
+
"get": {
|
|
17544
|
+
"operationId": "GetEventCoupon",
|
|
17545
|
+
"summary": "Get Event Coupon",
|
|
17546
|
+
"description": "Get Event Coupon endpoint",
|
|
17547
|
+
"parameters": [
|
|
17548
|
+
{
|
|
17549
|
+
"in": "path",
|
|
17550
|
+
"name": "eventId",
|
|
17551
|
+
"schema": {
|
|
17552
|
+
"type": "string"
|
|
17553
|
+
},
|
|
17554
|
+
"description": "The event identifier",
|
|
17555
|
+
"required": true
|
|
17556
|
+
},
|
|
17557
|
+
{
|
|
17558
|
+
"in": "path",
|
|
17559
|
+
"name": "couponId",
|
|
17560
|
+
"schema": {
|
|
17561
|
+
"type": "string"
|
|
17562
|
+
},
|
|
17563
|
+
"description": "The coupon identifier",
|
|
17564
|
+
"required": true
|
|
17565
|
+
}
|
|
17566
|
+
],
|
|
17567
|
+
"responses": {
|
|
17568
|
+
"200": {
|
|
17569
|
+
"description": "Successful response",
|
|
17570
|
+
"content": {
|
|
17571
|
+
"application/json": {
|
|
17572
|
+
"schema": {
|
|
17573
|
+
"type": "object",
|
|
17574
|
+
"properties": {
|
|
17575
|
+
"status": {
|
|
17576
|
+
"type": "string",
|
|
17577
|
+
"enum": [
|
|
17578
|
+
"ok"
|
|
17579
|
+
]
|
|
17580
|
+
},
|
|
17581
|
+
"message": {
|
|
17582
|
+
"type": "string",
|
|
17583
|
+
"example": "Success message."
|
|
17584
|
+
},
|
|
17585
|
+
"data": {
|
|
17586
|
+
"$ref": "#/components/schemas/Coupon"
|
|
17587
|
+
}
|
|
17588
|
+
},
|
|
17589
|
+
"required": [
|
|
17590
|
+
"status",
|
|
17591
|
+
"message",
|
|
17592
|
+
"data"
|
|
17593
|
+
]
|
|
17594
|
+
}
|
|
17595
|
+
}
|
|
17596
|
+
}
|
|
17597
|
+
}
|
|
17598
|
+
},
|
|
17599
|
+
"tags": [
|
|
17600
|
+
"Events::Coupons"
|
|
17601
|
+
]
|
|
17602
|
+
},
|
|
17603
|
+
"put": {
|
|
17604
|
+
"operationId": "UpdateEventCoupon",
|
|
17605
|
+
"summary": "Update Event Coupon",
|
|
17606
|
+
"description": "Update Event Coupon endpoint",
|
|
17607
|
+
"parameters": [
|
|
17608
|
+
{
|
|
17609
|
+
"in": "path",
|
|
17610
|
+
"name": "eventId",
|
|
17611
|
+
"schema": {
|
|
17612
|
+
"type": "string"
|
|
17613
|
+
},
|
|
17614
|
+
"description": "The event identifier",
|
|
17615
|
+
"required": true
|
|
17616
|
+
},
|
|
17617
|
+
{
|
|
17618
|
+
"in": "path",
|
|
17619
|
+
"name": "couponId",
|
|
17620
|
+
"schema": {
|
|
17621
|
+
"type": "string"
|
|
17622
|
+
},
|
|
17623
|
+
"description": "The coupon identifier",
|
|
17624
|
+
"required": true
|
|
17625
|
+
}
|
|
17626
|
+
],
|
|
17627
|
+
"requestBody": {
|
|
17628
|
+
"required": true,
|
|
17629
|
+
"content": {
|
|
17630
|
+
"application/json": {
|
|
17631
|
+
"schema": {
|
|
17632
|
+
"$ref": "#/components/schemas/EventCouponUpdateInputs"
|
|
17633
|
+
}
|
|
17634
|
+
}
|
|
17635
|
+
}
|
|
17636
|
+
},
|
|
17637
|
+
"responses": {
|
|
17638
|
+
"200": {
|
|
17639
|
+
"description": "Successful response",
|
|
17640
|
+
"content": {
|
|
17641
|
+
"application/json": {
|
|
17642
|
+
"schema": {
|
|
17643
|
+
"type": "object",
|
|
17644
|
+
"properties": {
|
|
17645
|
+
"status": {
|
|
17646
|
+
"type": "string",
|
|
17647
|
+
"enum": [
|
|
17648
|
+
"ok"
|
|
17649
|
+
]
|
|
17650
|
+
},
|
|
17651
|
+
"message": {
|
|
17652
|
+
"type": "string",
|
|
17653
|
+
"example": "Success message."
|
|
17654
|
+
},
|
|
17655
|
+
"data": {
|
|
17656
|
+
"$ref": "#/components/schemas/Coupon"
|
|
17657
|
+
}
|
|
17658
|
+
},
|
|
17659
|
+
"required": [
|
|
17660
|
+
"status",
|
|
17661
|
+
"message",
|
|
17662
|
+
"data"
|
|
17663
|
+
]
|
|
17664
|
+
}
|
|
17665
|
+
}
|
|
17666
|
+
}
|
|
17667
|
+
}
|
|
17668
|
+
},
|
|
17669
|
+
"tags": [
|
|
17670
|
+
"Events::Coupons"
|
|
17671
|
+
]
|
|
17672
|
+
},
|
|
17673
|
+
"delete": {
|
|
17674
|
+
"operationId": "DeleteEventCoupon",
|
|
17675
|
+
"summary": "Delete Event Coupon",
|
|
17676
|
+
"description": "Delete Event Coupon endpoint",
|
|
17677
|
+
"parameters": [
|
|
17678
|
+
{
|
|
17679
|
+
"in": "path",
|
|
17680
|
+
"name": "eventId",
|
|
17681
|
+
"schema": {
|
|
17682
|
+
"type": "string"
|
|
17683
|
+
},
|
|
17684
|
+
"description": "The event identifier",
|
|
17685
|
+
"required": true
|
|
17686
|
+
},
|
|
17687
|
+
{
|
|
17688
|
+
"in": "path",
|
|
17689
|
+
"name": "couponId",
|
|
17690
|
+
"schema": {
|
|
17691
|
+
"type": "string"
|
|
17692
|
+
},
|
|
17693
|
+
"description": "The coupon identifier",
|
|
17089
17694
|
"required": true
|
|
17090
17695
|
}
|
|
17091
17696
|
],
|
|
@@ -34074,7 +34679,233 @@
|
|
|
34074
34679
|
"example": "Success message."
|
|
34075
34680
|
},
|
|
34076
34681
|
"data": {
|
|
34077
|
-
"nullable": true
|
|
34682
|
+
"nullable": true
|
|
34683
|
+
}
|
|
34684
|
+
},
|
|
34685
|
+
"required": [
|
|
34686
|
+
"status",
|
|
34687
|
+
"message",
|
|
34688
|
+
"data"
|
|
34689
|
+
]
|
|
34690
|
+
}
|
|
34691
|
+
}
|
|
34692
|
+
}
|
|
34693
|
+
}
|
|
34694
|
+
},
|
|
34695
|
+
"tags": [
|
|
34696
|
+
"Events::Sessions"
|
|
34697
|
+
]
|
|
34698
|
+
}
|
|
34699
|
+
},
|
|
34700
|
+
"/events/{eventId}/sessions/{sessionId}/accesses": {
|
|
34701
|
+
"get": {
|
|
34702
|
+
"operationId": "GetEventSessionAccesses",
|
|
34703
|
+
"summary": "Get Event Session Accesses",
|
|
34704
|
+
"description": "Get Event Session Accesses endpoint",
|
|
34705
|
+
"parameters": [
|
|
34706
|
+
{
|
|
34707
|
+
"in": "path",
|
|
34708
|
+
"name": "eventId",
|
|
34709
|
+
"schema": {
|
|
34710
|
+
"type": "string"
|
|
34711
|
+
},
|
|
34712
|
+
"description": "The event identifier",
|
|
34713
|
+
"required": true
|
|
34714
|
+
},
|
|
34715
|
+
{
|
|
34716
|
+
"in": "path",
|
|
34717
|
+
"name": "sessionId",
|
|
34718
|
+
"schema": {
|
|
34719
|
+
"type": "string"
|
|
34720
|
+
},
|
|
34721
|
+
"description": "The session identifier",
|
|
34722
|
+
"required": true
|
|
34723
|
+
},
|
|
34724
|
+
{
|
|
34725
|
+
"in": "query",
|
|
34726
|
+
"name": "purchaseStatus",
|
|
34727
|
+
"schema": {
|
|
34728
|
+
"$ref": "#/components/schemas/PurchaseStatus"
|
|
34729
|
+
},
|
|
34730
|
+
"description": "Filter by purchaseStatus",
|
|
34731
|
+
"required": false
|
|
34732
|
+
},
|
|
34733
|
+
{
|
|
34734
|
+
"in": "query",
|
|
34735
|
+
"name": "page",
|
|
34736
|
+
"schema": {
|
|
34737
|
+
"type": "integer",
|
|
34738
|
+
"minimum": 1,
|
|
34739
|
+
"default": 1
|
|
34740
|
+
},
|
|
34741
|
+
"description": "Page number",
|
|
34742
|
+
"required": false
|
|
34743
|
+
},
|
|
34744
|
+
{
|
|
34745
|
+
"in": "query",
|
|
34746
|
+
"name": "pageSize",
|
|
34747
|
+
"schema": {
|
|
34748
|
+
"type": "integer",
|
|
34749
|
+
"minimum": 1,
|
|
34750
|
+
"maximum": 100,
|
|
34751
|
+
"default": 25
|
|
34752
|
+
},
|
|
34753
|
+
"description": "Number of items per page",
|
|
34754
|
+
"required": false
|
|
34755
|
+
},
|
|
34756
|
+
{
|
|
34757
|
+
"in": "query",
|
|
34758
|
+
"name": "orderBy",
|
|
34759
|
+
"schema": {
|
|
34760
|
+
"type": "string"
|
|
34761
|
+
},
|
|
34762
|
+
"description": "Field to order by",
|
|
34763
|
+
"required": false
|
|
34764
|
+
},
|
|
34765
|
+
{
|
|
34766
|
+
"in": "query",
|
|
34767
|
+
"name": "search",
|
|
34768
|
+
"schema": {
|
|
34769
|
+
"type": "string"
|
|
34770
|
+
},
|
|
34771
|
+
"description": "Search query",
|
|
34772
|
+
"required": false
|
|
34773
|
+
}
|
|
34774
|
+
],
|
|
34775
|
+
"responses": {
|
|
34776
|
+
"200": {
|
|
34777
|
+
"description": "Successful response",
|
|
34778
|
+
"content": {
|
|
34779
|
+
"application/json": {
|
|
34780
|
+
"schema": {
|
|
34781
|
+
"type": "object",
|
|
34782
|
+
"properties": {
|
|
34783
|
+
"status": {
|
|
34784
|
+
"type": "string",
|
|
34785
|
+
"enum": [
|
|
34786
|
+
"ok"
|
|
34787
|
+
]
|
|
34788
|
+
},
|
|
34789
|
+
"message": {
|
|
34790
|
+
"type": "string",
|
|
34791
|
+
"example": "Success message."
|
|
34792
|
+
},
|
|
34793
|
+
"data": {
|
|
34794
|
+
"type": "object"
|
|
34795
|
+
},
|
|
34796
|
+
"count": {
|
|
34797
|
+
"type": "integer",
|
|
34798
|
+
"example": 100
|
|
34799
|
+
}
|
|
34800
|
+
},
|
|
34801
|
+
"required": [
|
|
34802
|
+
"status",
|
|
34803
|
+
"message",
|
|
34804
|
+
"data"
|
|
34805
|
+
]
|
|
34806
|
+
}
|
|
34807
|
+
}
|
|
34808
|
+
}
|
|
34809
|
+
}
|
|
34810
|
+
},
|
|
34811
|
+
"tags": [
|
|
34812
|
+
"Events::Sessions"
|
|
34813
|
+
]
|
|
34814
|
+
}
|
|
34815
|
+
},
|
|
34816
|
+
"/events/{eventId}/sessions/{sessionId}/accounts": {
|
|
34817
|
+
"get": {
|
|
34818
|
+
"operationId": "GetEventSessionAccounts",
|
|
34819
|
+
"summary": "Get Event Session Accounts",
|
|
34820
|
+
"description": "Get Event Session Accounts endpoint",
|
|
34821
|
+
"parameters": [
|
|
34822
|
+
{
|
|
34823
|
+
"in": "path",
|
|
34824
|
+
"name": "eventId",
|
|
34825
|
+
"schema": {
|
|
34826
|
+
"type": "string"
|
|
34827
|
+
},
|
|
34828
|
+
"description": "The event identifier",
|
|
34829
|
+
"required": true
|
|
34830
|
+
},
|
|
34831
|
+
{
|
|
34832
|
+
"in": "path",
|
|
34833
|
+
"name": "sessionId",
|
|
34834
|
+
"schema": {
|
|
34835
|
+
"type": "string"
|
|
34836
|
+
},
|
|
34837
|
+
"description": "The session identifier",
|
|
34838
|
+
"required": true
|
|
34839
|
+
},
|
|
34840
|
+
{
|
|
34841
|
+
"in": "query",
|
|
34842
|
+
"name": "page",
|
|
34843
|
+
"schema": {
|
|
34844
|
+
"type": "integer",
|
|
34845
|
+
"minimum": 1,
|
|
34846
|
+
"default": 1
|
|
34847
|
+
},
|
|
34848
|
+
"description": "Page number",
|
|
34849
|
+
"required": false
|
|
34850
|
+
},
|
|
34851
|
+
{
|
|
34852
|
+
"in": "query",
|
|
34853
|
+
"name": "pageSize",
|
|
34854
|
+
"schema": {
|
|
34855
|
+
"type": "integer",
|
|
34856
|
+
"minimum": 1,
|
|
34857
|
+
"maximum": 100,
|
|
34858
|
+
"default": 25
|
|
34859
|
+
},
|
|
34860
|
+
"description": "Number of items per page",
|
|
34861
|
+
"required": false
|
|
34862
|
+
},
|
|
34863
|
+
{
|
|
34864
|
+
"in": "query",
|
|
34865
|
+
"name": "orderBy",
|
|
34866
|
+
"schema": {
|
|
34867
|
+
"type": "string"
|
|
34868
|
+
},
|
|
34869
|
+
"description": "Field to order by",
|
|
34870
|
+
"required": false
|
|
34871
|
+
},
|
|
34872
|
+
{
|
|
34873
|
+
"in": "query",
|
|
34874
|
+
"name": "search",
|
|
34875
|
+
"schema": {
|
|
34876
|
+
"type": "string"
|
|
34877
|
+
},
|
|
34878
|
+
"description": "Search query",
|
|
34879
|
+
"required": false
|
|
34880
|
+
}
|
|
34881
|
+
],
|
|
34882
|
+
"responses": {
|
|
34883
|
+
"200": {
|
|
34884
|
+
"description": "Successful response",
|
|
34885
|
+
"content": {
|
|
34886
|
+
"application/json": {
|
|
34887
|
+
"schema": {
|
|
34888
|
+
"type": "object",
|
|
34889
|
+
"properties": {
|
|
34890
|
+
"status": {
|
|
34891
|
+
"type": "string",
|
|
34892
|
+
"enum": [
|
|
34893
|
+
"ok"
|
|
34894
|
+
]
|
|
34895
|
+
},
|
|
34896
|
+
"message": {
|
|
34897
|
+
"type": "string",
|
|
34898
|
+
"example": "Success message."
|
|
34899
|
+
},
|
|
34900
|
+
"data": {
|
|
34901
|
+
"type": "array",
|
|
34902
|
+
"items": {
|
|
34903
|
+
"$ref": "#/components/schemas/Account"
|
|
34904
|
+
}
|
|
34905
|
+
},
|
|
34906
|
+
"count": {
|
|
34907
|
+
"type": "integer",
|
|
34908
|
+
"example": 100
|
|
34078
34909
|
}
|
|
34079
34910
|
},
|
|
34080
34911
|
"required": [
|
|
@@ -34092,11 +34923,11 @@
|
|
|
34092
34923
|
]
|
|
34093
34924
|
}
|
|
34094
34925
|
},
|
|
34095
|
-
"/events/{eventId}/sessions/{sessionId}/
|
|
34096
|
-
"
|
|
34097
|
-
"operationId": "
|
|
34098
|
-
"summary": "
|
|
34099
|
-
"description": "
|
|
34926
|
+
"/events/{eventId}/sessions/{sessionId}/accounts/{accountId}": {
|
|
34927
|
+
"post": {
|
|
34928
|
+
"operationId": "AddEventSessionAccount",
|
|
34929
|
+
"summary": "Add Event Session Account",
|
|
34930
|
+
"description": "Add Event Session Account endpoint",
|
|
34100
34931
|
"parameters": [
|
|
34101
34932
|
{
|
|
34102
34933
|
"in": "path",
|
|
@@ -34117,54 +34948,82 @@
|
|
|
34117
34948
|
"required": true
|
|
34118
34949
|
},
|
|
34119
34950
|
{
|
|
34120
|
-
"in": "
|
|
34121
|
-
"name": "
|
|
34122
|
-
"schema": {
|
|
34123
|
-
"$ref": "#/components/schemas/PurchaseStatus"
|
|
34124
|
-
},
|
|
34125
|
-
"description": "Filter by purchaseStatus",
|
|
34126
|
-
"required": false
|
|
34127
|
-
},
|
|
34128
|
-
{
|
|
34129
|
-
"in": "query",
|
|
34130
|
-
"name": "page",
|
|
34951
|
+
"in": "path",
|
|
34952
|
+
"name": "accountId",
|
|
34131
34953
|
"schema": {
|
|
34132
|
-
"type": "
|
|
34133
|
-
"minimum": 1,
|
|
34134
|
-
"default": 1
|
|
34954
|
+
"type": "string"
|
|
34135
34955
|
},
|
|
34136
|
-
"description": "
|
|
34137
|
-
"required":
|
|
34138
|
-
}
|
|
34956
|
+
"description": "The account identifier",
|
|
34957
|
+
"required": true
|
|
34958
|
+
}
|
|
34959
|
+
],
|
|
34960
|
+
"responses": {
|
|
34961
|
+
"200": {
|
|
34962
|
+
"description": "Successful response",
|
|
34963
|
+
"content": {
|
|
34964
|
+
"application/json": {
|
|
34965
|
+
"schema": {
|
|
34966
|
+
"type": "object",
|
|
34967
|
+
"properties": {
|
|
34968
|
+
"status": {
|
|
34969
|
+
"type": "string",
|
|
34970
|
+
"enum": [
|
|
34971
|
+
"ok"
|
|
34972
|
+
]
|
|
34973
|
+
},
|
|
34974
|
+
"message": {
|
|
34975
|
+
"type": "string",
|
|
34976
|
+
"example": "Success message."
|
|
34977
|
+
},
|
|
34978
|
+
"data": {
|
|
34979
|
+
"type": "object"
|
|
34980
|
+
}
|
|
34981
|
+
},
|
|
34982
|
+
"required": [
|
|
34983
|
+
"status",
|
|
34984
|
+
"message",
|
|
34985
|
+
"data"
|
|
34986
|
+
]
|
|
34987
|
+
}
|
|
34988
|
+
}
|
|
34989
|
+
}
|
|
34990
|
+
}
|
|
34991
|
+
},
|
|
34992
|
+
"tags": [
|
|
34993
|
+
"Events::Sessions"
|
|
34994
|
+
]
|
|
34995
|
+
},
|
|
34996
|
+
"delete": {
|
|
34997
|
+
"operationId": "RemoveEventSessionAccount",
|
|
34998
|
+
"summary": "Remove Event Session Account",
|
|
34999
|
+
"description": "Remove Event Session Account endpoint",
|
|
35000
|
+
"parameters": [
|
|
34139
35001
|
{
|
|
34140
|
-
"in": "
|
|
34141
|
-
"name": "
|
|
35002
|
+
"in": "path",
|
|
35003
|
+
"name": "eventId",
|
|
34142
35004
|
"schema": {
|
|
34143
|
-
"type": "
|
|
34144
|
-
"minimum": 1,
|
|
34145
|
-
"maximum": 100,
|
|
34146
|
-
"default": 25
|
|
35005
|
+
"type": "string"
|
|
34147
35006
|
},
|
|
34148
|
-
"description": "
|
|
34149
|
-
"required":
|
|
35007
|
+
"description": "The event identifier",
|
|
35008
|
+
"required": true
|
|
34150
35009
|
},
|
|
34151
35010
|
{
|
|
34152
|
-
"in": "
|
|
34153
|
-
"name": "
|
|
35011
|
+
"in": "path",
|
|
35012
|
+
"name": "sessionId",
|
|
34154
35013
|
"schema": {
|
|
34155
35014
|
"type": "string"
|
|
34156
35015
|
},
|
|
34157
|
-
"description": "
|
|
34158
|
-
"required":
|
|
35016
|
+
"description": "The session identifier",
|
|
35017
|
+
"required": true
|
|
34159
35018
|
},
|
|
34160
35019
|
{
|
|
34161
|
-
"in": "
|
|
34162
|
-
"name": "
|
|
35020
|
+
"in": "path",
|
|
35021
|
+
"name": "accountId",
|
|
34163
35022
|
"schema": {
|
|
34164
35023
|
"type": "string"
|
|
34165
35024
|
},
|
|
34166
|
-
"description": "
|
|
34167
|
-
"required":
|
|
35025
|
+
"description": "The account identifier",
|
|
35026
|
+
"required": true
|
|
34168
35027
|
}
|
|
34169
35028
|
],
|
|
34170
35029
|
"responses": {
|
|
@@ -34187,10 +35046,6 @@
|
|
|
34187
35046
|
},
|
|
34188
35047
|
"data": {
|
|
34189
35048
|
"type": "object"
|
|
34190
|
-
},
|
|
34191
|
-
"count": {
|
|
34192
|
-
"type": "integer",
|
|
34193
|
-
"example": 100
|
|
34194
35049
|
}
|
|
34195
35050
|
},
|
|
34196
35051
|
"required": [
|
|
@@ -34208,11 +35063,11 @@
|
|
|
34208
35063
|
]
|
|
34209
35064
|
}
|
|
34210
35065
|
},
|
|
34211
|
-
"/events/{eventId}/sessions/{sessionId}/
|
|
35066
|
+
"/events/{eventId}/sessions/{sessionId}/blocks": {
|
|
34212
35067
|
"get": {
|
|
34213
|
-
"operationId": "
|
|
34214
|
-
"summary": "Get Event Session
|
|
34215
|
-
"description": "Get Event Session
|
|
35068
|
+
"operationId": "GetEventSessionBlocks",
|
|
35069
|
+
"summary": "Get Event Session Blocks",
|
|
35070
|
+
"description": "Get Event Session Blocks endpoint",
|
|
34216
35071
|
"parameters": [
|
|
34217
35072
|
{
|
|
34218
35073
|
"in": "path",
|
|
@@ -34295,7 +35150,7 @@
|
|
|
34295
35150
|
"data": {
|
|
34296
35151
|
"type": "array",
|
|
34297
35152
|
"items": {
|
|
34298
|
-
"$ref": "#/components/schemas/
|
|
35153
|
+
"$ref": "#/components/schemas/EventBlock"
|
|
34299
35154
|
}
|
|
34300
35155
|
},
|
|
34301
35156
|
"count": {
|
|
@@ -34318,11 +35173,11 @@
|
|
|
34318
35173
|
]
|
|
34319
35174
|
}
|
|
34320
35175
|
},
|
|
34321
|
-
"/events/{eventId}/sessions/{sessionId}/
|
|
35176
|
+
"/events/{eventId}/sessions/{sessionId}/blocks/{blockId}": {
|
|
34322
35177
|
"post": {
|
|
34323
|
-
"operationId": "
|
|
34324
|
-
"summary": "Add Event Session
|
|
34325
|
-
"description": "Add Event Session
|
|
35178
|
+
"operationId": "AddEventSessionBlock",
|
|
35179
|
+
"summary": "Add Event Session Block",
|
|
35180
|
+
"description": "Add Event Session Block endpoint",
|
|
34326
35181
|
"parameters": [
|
|
34327
35182
|
{
|
|
34328
35183
|
"in": "path",
|
|
@@ -34344,11 +35199,11 @@
|
|
|
34344
35199
|
},
|
|
34345
35200
|
{
|
|
34346
35201
|
"in": "path",
|
|
34347
|
-
"name": "
|
|
35202
|
+
"name": "blockId",
|
|
34348
35203
|
"schema": {
|
|
34349
35204
|
"type": "string"
|
|
34350
35205
|
},
|
|
34351
|
-
"description": "The
|
|
35206
|
+
"description": "The block identifier",
|
|
34352
35207
|
"required": true
|
|
34353
35208
|
}
|
|
34354
35209
|
],
|
|
@@ -34371,7 +35226,7 @@
|
|
|
34371
35226
|
"example": "Success message."
|
|
34372
35227
|
},
|
|
34373
35228
|
"data": {
|
|
34374
|
-
"
|
|
35229
|
+
"$ref": "#/components/schemas/EventSession"
|
|
34375
35230
|
}
|
|
34376
35231
|
},
|
|
34377
35232
|
"required": [
|
|
@@ -34389,9 +35244,9 @@
|
|
|
34389
35244
|
]
|
|
34390
35245
|
},
|
|
34391
35246
|
"delete": {
|
|
34392
|
-
"operationId": "
|
|
34393
|
-
"summary": "Remove Event Session
|
|
34394
|
-
"description": "Remove Event Session
|
|
35247
|
+
"operationId": "RemoveEventSessionBlock",
|
|
35248
|
+
"summary": "Remove Event Session Block",
|
|
35249
|
+
"description": "Remove Event Session Block endpoint",
|
|
34395
35250
|
"parameters": [
|
|
34396
35251
|
{
|
|
34397
35252
|
"in": "path",
|
|
@@ -34413,11 +35268,11 @@
|
|
|
34413
35268
|
},
|
|
34414
35269
|
{
|
|
34415
35270
|
"in": "path",
|
|
34416
|
-
"name": "
|
|
35271
|
+
"name": "blockId",
|
|
34417
35272
|
"schema": {
|
|
34418
35273
|
"type": "string"
|
|
34419
35274
|
},
|
|
34420
|
-
"description": "The
|
|
35275
|
+
"description": "The block identifier",
|
|
34421
35276
|
"required": true
|
|
34422
35277
|
}
|
|
34423
35278
|
],
|
|
@@ -63299,6 +64154,24 @@
|
|
|
63299
64154
|
"summary": "Get Surveys",
|
|
63300
64155
|
"description": "Get Surveys endpoint",
|
|
63301
64156
|
"parameters": [
|
|
64157
|
+
{
|
|
64158
|
+
"in": "query",
|
|
64159
|
+
"name": "eventId",
|
|
64160
|
+
"schema": {
|
|
64161
|
+
"type": "string"
|
|
64162
|
+
},
|
|
64163
|
+
"description": "Filter by eventId",
|
|
64164
|
+
"required": false
|
|
64165
|
+
},
|
|
64166
|
+
{
|
|
64167
|
+
"in": "query",
|
|
64168
|
+
"name": "sessionId",
|
|
64169
|
+
"schema": {
|
|
64170
|
+
"type": "string"
|
|
64171
|
+
},
|
|
64172
|
+
"description": "Filter by sessionId",
|
|
64173
|
+
"required": false
|
|
64174
|
+
},
|
|
63302
64175
|
{
|
|
63303
64176
|
"in": "query",
|
|
63304
64177
|
"name": "page",
|
|
@@ -79963,6 +80836,13 @@
|
|
|
79963
80836
|
}
|
|
79964
80837
|
],
|
|
79965
80838
|
"nullable": true
|
|
80839
|
+
},
|
|
80840
|
+
"blocks": {
|
|
80841
|
+
"type": "array",
|
|
80842
|
+
"items": {
|
|
80843
|
+
"$ref": "#/components/schemas/BaseEventBlock"
|
|
80844
|
+
},
|
|
80845
|
+
"nullable": true
|
|
79966
80846
|
}
|
|
79967
80847
|
},
|
|
79968
80848
|
"required": [
|
|
@@ -79973,7 +80853,8 @@
|
|
|
79973
80853
|
"event",
|
|
79974
80854
|
"speakers",
|
|
79975
80855
|
"meetingId",
|
|
79976
|
-
"meeting"
|
|
80856
|
+
"meeting",
|
|
80857
|
+
"blocks"
|
|
79977
80858
|
]
|
|
79978
80859
|
}
|
|
79979
80860
|
]
|
|
@@ -80912,6 +81793,58 @@
|
|
|
80912
81793
|
"updatedAt"
|
|
80913
81794
|
]
|
|
80914
81795
|
},
|
|
81796
|
+
"BaseEventBlock": {
|
|
81797
|
+
"type": "object",
|
|
81798
|
+
"properties": {
|
|
81799
|
+
"id": {
|
|
81800
|
+
"type": "string"
|
|
81801
|
+
},
|
|
81802
|
+
"name": {
|
|
81803
|
+
"type": "string"
|
|
81804
|
+
},
|
|
81805
|
+
"limit": {
|
|
81806
|
+
"type": "number"
|
|
81807
|
+
}
|
|
81808
|
+
},
|
|
81809
|
+
"required": [
|
|
81810
|
+
"id",
|
|
81811
|
+
"name",
|
|
81812
|
+
"limit"
|
|
81813
|
+
]
|
|
81814
|
+
},
|
|
81815
|
+
"EventBlock": {
|
|
81816
|
+
"allOf": [
|
|
81817
|
+
{
|
|
81818
|
+
"$ref": "#/components/schemas/BaseEventBlock"
|
|
81819
|
+
},
|
|
81820
|
+
{
|
|
81821
|
+
"type": "object",
|
|
81822
|
+
"properties": {
|
|
81823
|
+
"event": {
|
|
81824
|
+
"$ref": "#/components/schemas/BaseEvent"
|
|
81825
|
+
},
|
|
81826
|
+
"sessions": {
|
|
81827
|
+
"type": "array",
|
|
81828
|
+
"items": {
|
|
81829
|
+
"$ref": "#/components/schemas/BaseEventSession"
|
|
81830
|
+
}
|
|
81831
|
+
},
|
|
81832
|
+
"createdAt": {
|
|
81833
|
+
"type": "string"
|
|
81834
|
+
},
|
|
81835
|
+
"updatedAt": {
|
|
81836
|
+
"type": "string"
|
|
81837
|
+
}
|
|
81838
|
+
},
|
|
81839
|
+
"required": [
|
|
81840
|
+
"event",
|
|
81841
|
+
"sessions",
|
|
81842
|
+
"createdAt",
|
|
81843
|
+
"updatedAt"
|
|
81844
|
+
]
|
|
81845
|
+
}
|
|
81846
|
+
]
|
|
81847
|
+
},
|
|
80915
81848
|
"BaseEventSpeaker": {
|
|
80916
81849
|
"type": "object",
|
|
80917
81850
|
"properties": {
|
|
@@ -86275,13 +87208,41 @@
|
|
|
86275
87208
|
},
|
|
86276
87209
|
"updatedAt": {
|
|
86277
87210
|
"type": "string"
|
|
87211
|
+
},
|
|
87212
|
+
"eventId": {
|
|
87213
|
+
"type": "string",
|
|
87214
|
+
"nullable": true
|
|
87215
|
+
},
|
|
87216
|
+
"event": {
|
|
87217
|
+
"allOf": [
|
|
87218
|
+
{
|
|
87219
|
+
"$ref": "#/components/schemas/BaseEvent"
|
|
87220
|
+
}
|
|
87221
|
+
],
|
|
87222
|
+
"nullable": true
|
|
87223
|
+
},
|
|
87224
|
+
"sessionId": {
|
|
87225
|
+
"type": "string",
|
|
87226
|
+
"nullable": true
|
|
87227
|
+
},
|
|
87228
|
+
"session": {
|
|
87229
|
+
"allOf": [
|
|
87230
|
+
{
|
|
87231
|
+
"$ref": "#/components/schemas/BaseEventSession"
|
|
87232
|
+
}
|
|
87233
|
+
],
|
|
87234
|
+
"nullable": true
|
|
86278
87235
|
}
|
|
86279
87236
|
},
|
|
86280
87237
|
"required": [
|
|
86281
87238
|
"replyTo",
|
|
86282
87239
|
"emailBody",
|
|
86283
87240
|
"createdAt",
|
|
86284
|
-
"updatedAt"
|
|
87241
|
+
"updatedAt",
|
|
87242
|
+
"eventId",
|
|
87243
|
+
"event",
|
|
87244
|
+
"sessionId",
|
|
87245
|
+
"session"
|
|
86285
87246
|
]
|
|
86286
87247
|
}
|
|
86287
87248
|
]
|
|
@@ -92405,6 +93366,31 @@
|
|
|
92405
93366
|
}
|
|
92406
93367
|
}
|
|
92407
93368
|
},
|
|
93369
|
+
"EventBlockCreateInputs": {
|
|
93370
|
+
"type": "object",
|
|
93371
|
+
"properties": {
|
|
93372
|
+
"name": {
|
|
93373
|
+
"type": "string"
|
|
93374
|
+
},
|
|
93375
|
+
"limit": {
|
|
93376
|
+
"type": "number"
|
|
93377
|
+
}
|
|
93378
|
+
},
|
|
93379
|
+
"required": [
|
|
93380
|
+
"name"
|
|
93381
|
+
]
|
|
93382
|
+
},
|
|
93383
|
+
"EventBlockUpdateInputs": {
|
|
93384
|
+
"type": "object",
|
|
93385
|
+
"properties": {
|
|
93386
|
+
"name": {
|
|
93387
|
+
"type": "string"
|
|
93388
|
+
},
|
|
93389
|
+
"limit": {
|
|
93390
|
+
"type": "number"
|
|
93391
|
+
}
|
|
93392
|
+
}
|
|
93393
|
+
},
|
|
92408
93394
|
"EventSpeakerCreateInputs": {
|
|
92409
93395
|
"type": "object",
|
|
92410
93396
|
"properties": {
|
|
@@ -96536,6 +97522,14 @@
|
|
|
96536
97522
|
"emailBody": {
|
|
96537
97523
|
"type": "string",
|
|
96538
97524
|
"nullable": true
|
|
97525
|
+
},
|
|
97526
|
+
"eventId": {
|
|
97527
|
+
"type": "string",
|
|
97528
|
+
"nullable": true
|
|
97529
|
+
},
|
|
97530
|
+
"sessionId": {
|
|
97531
|
+
"type": "string",
|
|
97532
|
+
"nullable": true
|
|
96539
97533
|
}
|
|
96540
97534
|
},
|
|
96541
97535
|
"required": [
|
|
@@ -96579,6 +97573,14 @@
|
|
|
96579
97573
|
"emailBody": {
|
|
96580
97574
|
"type": "string",
|
|
96581
97575
|
"nullable": true
|
|
97576
|
+
},
|
|
97577
|
+
"eventId": {
|
|
97578
|
+
"type": "string",
|
|
97579
|
+
"nullable": true
|
|
97580
|
+
},
|
|
97581
|
+
"sessionId": {
|
|
97582
|
+
"type": "string",
|
|
97583
|
+
"nullable": true
|
|
96582
97584
|
}
|
|
96583
97585
|
}
|
|
96584
97586
|
},
|