@connectedxm/admin-sdk 6.26.0 → 6.27.0
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/README.md +6 -0
- package/api.ts +1075 -382
- package/dist/api.d.ts +355 -0
- package/dist/api.js +511 -0
- package/dist/esm/api.d.ts +355 -0
- package/dist/esm/api.js +511 -0
- package/docs/EventSessionVisibility.md +2 -0
- package/docs/EventsSessionsApi.md +366 -0
- package/package.json +1 -1
|
@@ -11,6 +11,8 @@ All URIs are relative to *https://admin-api.connected.dev*
|
|
|
11
11
|
|[**addEventSessionSponsor**](#addeventsessionsponsor) | **POST** /events/{eventId}/sessions/{sessionId}/sponsors/{sponsorId} | Add Event Session Sponsor|
|
|
12
12
|
|[**addEventSessionTier**](#addeventsessiontier) | **POST** /events/{eventId}/sessions/{sessionId}/tiers/{tierId} | Add Event Session Tier|
|
|
13
13
|
|[**addEventSessionTrack**](#addeventsessiontrack) | **POST** /events/{eventId}/sessions/{sessionId}/tracks/{trackId} | Add Event Session Track|
|
|
14
|
+
|[**addEventSessionVisiblePassType**](#addeventsessionvisiblepasstype) | **POST** /events/{eventId}/sessions/{sessionId}/visiblePassTypes/{passTypeId} | Add Event Session Visible Pass Type|
|
|
15
|
+
|[**addEventSessionVisibleTier**](#addeventsessionvisibletier) | **POST** /events/{eventId}/sessions/{sessionId}/visibleTiers/{tierId} | Add Event Session Visible Tier|
|
|
14
16
|
|[**cloneEventSession**](#cloneeventsession) | **POST** /events/{eventId}/sessions/{sessionId}/clone | Clone Event Session|
|
|
15
17
|
|[**createEventSession**](#createeventsession) | **POST** /events/{eventId}/sessions | Create Event Session|
|
|
16
18
|
|[**deleteEventSession**](#deleteeventsession) | **DELETE** /events/{eventId}/sessions/{sessionId} | Delete Event Session|
|
|
@@ -24,6 +26,8 @@ All URIs are relative to *https://admin-api.connected.dev*
|
|
|
24
26
|
|[**getEventSessionSponsors**](#geteventsessionsponsors) | **GET** /events/{eventId}/sessions/{sessionId}/sponsors | Get Event Session Sponsors|
|
|
25
27
|
|[**getEventSessionTiers**](#geteventsessiontiers) | **GET** /events/{eventId}/sessions/{sessionId}/tiers | Get Event Session Tiers|
|
|
26
28
|
|[**getEventSessionTracks**](#geteventsessiontracks) | **GET** /events/{eventId}/sessions/{sessionId}/tracks | Get Event Session Tracks|
|
|
29
|
+
|[**getEventSessionVisiblePassTypes**](#geteventsessionvisiblepasstypes) | **GET** /events/{eventId}/sessions/{sessionId}/visiblePassTypes | Get Event Session Visible Pass Types|
|
|
30
|
+
|[**getEventSessionVisibleTiers**](#geteventsessionvisibletiers) | **GET** /events/{eventId}/sessions/{sessionId}/visibleTiers | Get Event Session Visible Tiers|
|
|
27
31
|
|[**getEventSessions**](#geteventsessions) | **GET** /events/{eventId}/sessions | Get Event Sessions|
|
|
28
32
|
|[**removeEventSessionAccount**](#removeeventsessionaccount) | **DELETE** /events/{eventId}/sessions/{sessionId}/accounts/{accountId} | Remove Event Session Account|
|
|
29
33
|
|[**removeEventSessionBlock**](#removeeventsessionblock) | **DELETE** /events/{eventId}/sessions/{sessionId}/blocks/{blockId} | Remove Event Session Block|
|
|
@@ -32,6 +36,8 @@ All URIs are relative to *https://admin-api.connected.dev*
|
|
|
32
36
|
|[**removeEventSessionSponsor**](#removeeventsessionsponsor) | **DELETE** /events/{eventId}/sessions/{sessionId}/sponsors/{sponsorId} | Remove Event Session Sponsor|
|
|
33
37
|
|[**removeEventSessionTier**](#removeeventsessiontier) | **DELETE** /events/{eventId}/sessions/{sessionId}/tiers/{tierId} | Remove Event Session Tier|
|
|
34
38
|
|[**removeEventSessionTrack**](#removeeventsessiontrack) | **DELETE** /events/{eventId}/sessions/{sessionId}/tracks/{trackId} | Remove Event Session Track|
|
|
39
|
+
|[**removeEventSessionVisiblePassType**](#removeeventsessionvisiblepasstype) | **DELETE** /events/{eventId}/sessions/{sessionId}/visiblePassTypes/{passTypeId} | Remove Event Session Visible Pass Type|
|
|
40
|
+
|[**removeEventSessionVisibleTier**](#removeeventsessionvisibletier) | **DELETE** /events/{eventId}/sessions/{sessionId}/visibleTiers/{tierId} | Remove Event Session Visible Tier|
|
|
35
41
|
|[**updateEventSession**](#updateeventsession) | **PUT** /events/{eventId}/sessions/{sessionId} | Update Event Session|
|
|
36
42
|
|
|
37
43
|
# **addEventSessionAccount**
|
|
@@ -412,6 +418,120 @@ const { status, data } = await apiInstance.addEventSessionTrack(
|
|
|
412
418
|
| **trackId** | [**string**] | The track identifier | defaults to undefined|
|
|
413
419
|
|
|
414
420
|
|
|
421
|
+
### Return type
|
|
422
|
+
|
|
423
|
+
**CreateEventSession200Response**
|
|
424
|
+
|
|
425
|
+
### Authorization
|
|
426
|
+
|
|
427
|
+
[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)
|
|
428
|
+
|
|
429
|
+
### HTTP request headers
|
|
430
|
+
|
|
431
|
+
- **Content-Type**: Not defined
|
|
432
|
+
- **Accept**: application/json
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
### HTTP response details
|
|
436
|
+
| Status code | Description | Response headers |
|
|
437
|
+
|-------------|-------------|------------------|
|
|
438
|
+
|**200** | Successful response | - |
|
|
439
|
+
|
|
440
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
441
|
+
|
|
442
|
+
# **addEventSessionVisiblePassType**
|
|
443
|
+
> CreateEventSession200Response addEventSessionVisiblePassType()
|
|
444
|
+
|
|
445
|
+
Add Event Session Visible Pass Type endpoint
|
|
446
|
+
|
|
447
|
+
### Example
|
|
448
|
+
|
|
449
|
+
```typescript
|
|
450
|
+
import {
|
|
451
|
+
EventsSessionsApi,
|
|
452
|
+
Configuration
|
|
453
|
+
} from '@connectedxm/admin-sdk';
|
|
454
|
+
|
|
455
|
+
const configuration = new Configuration();
|
|
456
|
+
const apiInstance = new EventsSessionsApi(configuration);
|
|
457
|
+
|
|
458
|
+
let eventId: string; //The event identifier (default to undefined)
|
|
459
|
+
let sessionId: string; //The session identifier (default to undefined)
|
|
460
|
+
let passTypeId: string; //The passType identifier (default to undefined)
|
|
461
|
+
|
|
462
|
+
const { status, data } = await apiInstance.addEventSessionVisiblePassType(
|
|
463
|
+
eventId,
|
|
464
|
+
sessionId,
|
|
465
|
+
passTypeId
|
|
466
|
+
);
|
|
467
|
+
```
|
|
468
|
+
|
|
469
|
+
### Parameters
|
|
470
|
+
|
|
471
|
+
|Name | Type | Description | Notes|
|
|
472
|
+
|------------- | ------------- | ------------- | -------------|
|
|
473
|
+
| **eventId** | [**string**] | The event identifier | defaults to undefined|
|
|
474
|
+
| **sessionId** | [**string**] | The session identifier | defaults to undefined|
|
|
475
|
+
| **passTypeId** | [**string**] | The passType identifier | defaults to undefined|
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
### Return type
|
|
479
|
+
|
|
480
|
+
**CreateEventSession200Response**
|
|
481
|
+
|
|
482
|
+
### Authorization
|
|
483
|
+
|
|
484
|
+
[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)
|
|
485
|
+
|
|
486
|
+
### HTTP request headers
|
|
487
|
+
|
|
488
|
+
- **Content-Type**: Not defined
|
|
489
|
+
- **Accept**: application/json
|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
### HTTP response details
|
|
493
|
+
| Status code | Description | Response headers |
|
|
494
|
+
|-------------|-------------|------------------|
|
|
495
|
+
|**200** | Successful response | - |
|
|
496
|
+
|
|
497
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
498
|
+
|
|
499
|
+
# **addEventSessionVisibleTier**
|
|
500
|
+
> CreateEventSession200Response addEventSessionVisibleTier()
|
|
501
|
+
|
|
502
|
+
Add Event Session Visible Tier endpoint
|
|
503
|
+
|
|
504
|
+
### Example
|
|
505
|
+
|
|
506
|
+
```typescript
|
|
507
|
+
import {
|
|
508
|
+
EventsSessionsApi,
|
|
509
|
+
Configuration
|
|
510
|
+
} from '@connectedxm/admin-sdk';
|
|
511
|
+
|
|
512
|
+
const configuration = new Configuration();
|
|
513
|
+
const apiInstance = new EventsSessionsApi(configuration);
|
|
514
|
+
|
|
515
|
+
let eventId: string; //The event identifier (default to undefined)
|
|
516
|
+
let sessionId: string; //The session identifier (default to undefined)
|
|
517
|
+
let tierId: string; //The tier identifier (default to undefined)
|
|
518
|
+
|
|
519
|
+
const { status, data } = await apiInstance.addEventSessionVisibleTier(
|
|
520
|
+
eventId,
|
|
521
|
+
sessionId,
|
|
522
|
+
tierId
|
|
523
|
+
);
|
|
524
|
+
```
|
|
525
|
+
|
|
526
|
+
### Parameters
|
|
527
|
+
|
|
528
|
+
|Name | Type | Description | Notes|
|
|
529
|
+
|------------- | ------------- | ------------- | -------------|
|
|
530
|
+
| **eventId** | [**string**] | The event identifier | defaults to undefined|
|
|
531
|
+
| **sessionId** | [**string**] | The session identifier | defaults to undefined|
|
|
532
|
+
| **tierId** | [**string**] | The tier identifier | defaults to undefined|
|
|
533
|
+
|
|
534
|
+
|
|
415
535
|
### Return type
|
|
416
536
|
|
|
417
537
|
**CreateEventSession200Response**
|
|
@@ -1244,6 +1364,138 @@ const { status, data } = await apiInstance.getEventSessionTracks(
|
|
|
1244
1364
|
- **Accept**: application/json
|
|
1245
1365
|
|
|
1246
1366
|
|
|
1367
|
+
### HTTP response details
|
|
1368
|
+
| Status code | Description | Response headers |
|
|
1369
|
+
|-------------|-------------|------------------|
|
|
1370
|
+
|**200** | Successful response | - |
|
|
1371
|
+
|
|
1372
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1373
|
+
|
|
1374
|
+
# **getEventSessionVisiblePassTypes**
|
|
1375
|
+
> GetEventAddOnPassTypes200Response getEventSessionVisiblePassTypes()
|
|
1376
|
+
|
|
1377
|
+
Get Event Session Visible Pass Types endpoint
|
|
1378
|
+
|
|
1379
|
+
### Example
|
|
1380
|
+
|
|
1381
|
+
```typescript
|
|
1382
|
+
import {
|
|
1383
|
+
EventsSessionsApi,
|
|
1384
|
+
Configuration
|
|
1385
|
+
} from '@connectedxm/admin-sdk';
|
|
1386
|
+
|
|
1387
|
+
const configuration = new Configuration();
|
|
1388
|
+
const apiInstance = new EventsSessionsApi(configuration);
|
|
1389
|
+
|
|
1390
|
+
let eventId: string; //The event identifier (default to undefined)
|
|
1391
|
+
let sessionId: string; //The session identifier (default to undefined)
|
|
1392
|
+
let page: number; //Page number (optional) (default to 1)
|
|
1393
|
+
let pageSize: number; //Number of items per page (optional) (default to 25)
|
|
1394
|
+
let orderBy: string; //Field to order by (optional) (default to undefined)
|
|
1395
|
+
let search: string; //Search query (optional) (default to undefined)
|
|
1396
|
+
|
|
1397
|
+
const { status, data } = await apiInstance.getEventSessionVisiblePassTypes(
|
|
1398
|
+
eventId,
|
|
1399
|
+
sessionId,
|
|
1400
|
+
page,
|
|
1401
|
+
pageSize,
|
|
1402
|
+
orderBy,
|
|
1403
|
+
search
|
|
1404
|
+
);
|
|
1405
|
+
```
|
|
1406
|
+
|
|
1407
|
+
### Parameters
|
|
1408
|
+
|
|
1409
|
+
|Name | Type | Description | Notes|
|
|
1410
|
+
|------------- | ------------- | ------------- | -------------|
|
|
1411
|
+
| **eventId** | [**string**] | The event identifier | defaults to undefined|
|
|
1412
|
+
| **sessionId** | [**string**] | The session identifier | defaults to undefined|
|
|
1413
|
+
| **page** | [**number**] | Page number | (optional) defaults to 1|
|
|
1414
|
+
| **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
|
|
1415
|
+
| **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
|
|
1416
|
+
| **search** | [**string**] | Search query | (optional) defaults to undefined|
|
|
1417
|
+
|
|
1418
|
+
|
|
1419
|
+
### Return type
|
|
1420
|
+
|
|
1421
|
+
**GetEventAddOnPassTypes200Response**
|
|
1422
|
+
|
|
1423
|
+
### Authorization
|
|
1424
|
+
|
|
1425
|
+
[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)
|
|
1426
|
+
|
|
1427
|
+
### HTTP request headers
|
|
1428
|
+
|
|
1429
|
+
- **Content-Type**: Not defined
|
|
1430
|
+
- **Accept**: application/json
|
|
1431
|
+
|
|
1432
|
+
|
|
1433
|
+
### HTTP response details
|
|
1434
|
+
| Status code | Description | Response headers |
|
|
1435
|
+
|-------------|-------------|------------------|
|
|
1436
|
+
|**200** | Successful response | - |
|
|
1437
|
+
|
|
1438
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1439
|
+
|
|
1440
|
+
# **getEventSessionVisibleTiers**
|
|
1441
|
+
> GetAccountTiers200Response getEventSessionVisibleTiers()
|
|
1442
|
+
|
|
1443
|
+
Get Event Session Visible Tiers endpoint
|
|
1444
|
+
|
|
1445
|
+
### Example
|
|
1446
|
+
|
|
1447
|
+
```typescript
|
|
1448
|
+
import {
|
|
1449
|
+
EventsSessionsApi,
|
|
1450
|
+
Configuration
|
|
1451
|
+
} from '@connectedxm/admin-sdk';
|
|
1452
|
+
|
|
1453
|
+
const configuration = new Configuration();
|
|
1454
|
+
const apiInstance = new EventsSessionsApi(configuration);
|
|
1455
|
+
|
|
1456
|
+
let eventId: string; //The event identifier (default to undefined)
|
|
1457
|
+
let sessionId: string; //The session identifier (default to undefined)
|
|
1458
|
+
let page: number; //Page number (optional) (default to 1)
|
|
1459
|
+
let pageSize: number; //Number of items per page (optional) (default to 25)
|
|
1460
|
+
let orderBy: string; //Field to order by (optional) (default to undefined)
|
|
1461
|
+
let search: string; //Search query (optional) (default to undefined)
|
|
1462
|
+
|
|
1463
|
+
const { status, data } = await apiInstance.getEventSessionVisibleTiers(
|
|
1464
|
+
eventId,
|
|
1465
|
+
sessionId,
|
|
1466
|
+
page,
|
|
1467
|
+
pageSize,
|
|
1468
|
+
orderBy,
|
|
1469
|
+
search
|
|
1470
|
+
);
|
|
1471
|
+
```
|
|
1472
|
+
|
|
1473
|
+
### Parameters
|
|
1474
|
+
|
|
1475
|
+
|Name | Type | Description | Notes|
|
|
1476
|
+
|------------- | ------------- | ------------- | -------------|
|
|
1477
|
+
| **eventId** | [**string**] | The event identifier | defaults to undefined|
|
|
1478
|
+
| **sessionId** | [**string**] | The session identifier | defaults to undefined|
|
|
1479
|
+
| **page** | [**number**] | Page number | (optional) defaults to 1|
|
|
1480
|
+
| **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
|
|
1481
|
+
| **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
|
|
1482
|
+
| **search** | [**string**] | Search query | (optional) defaults to undefined|
|
|
1483
|
+
|
|
1484
|
+
|
|
1485
|
+
### Return type
|
|
1486
|
+
|
|
1487
|
+
**GetAccountTiers200Response**
|
|
1488
|
+
|
|
1489
|
+
### Authorization
|
|
1490
|
+
|
|
1491
|
+
[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)
|
|
1492
|
+
|
|
1493
|
+
### HTTP request headers
|
|
1494
|
+
|
|
1495
|
+
- **Content-Type**: Not defined
|
|
1496
|
+
- **Accept**: application/json
|
|
1497
|
+
|
|
1498
|
+
|
|
1247
1499
|
### HTTP response details
|
|
1248
1500
|
| Status code | Description | Response headers |
|
|
1249
1501
|
|-------------|-------------|------------------|
|
|
@@ -1692,6 +1944,120 @@ const { status, data } = await apiInstance.removeEventSessionTrack(
|
|
|
1692
1944
|
| **trackId** | [**string**] | The track identifier | defaults to undefined|
|
|
1693
1945
|
|
|
1694
1946
|
|
|
1947
|
+
### Return type
|
|
1948
|
+
|
|
1949
|
+
**CreateEventSession200Response**
|
|
1950
|
+
|
|
1951
|
+
### Authorization
|
|
1952
|
+
|
|
1953
|
+
[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)
|
|
1954
|
+
|
|
1955
|
+
### HTTP request headers
|
|
1956
|
+
|
|
1957
|
+
- **Content-Type**: Not defined
|
|
1958
|
+
- **Accept**: application/json
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
### HTTP response details
|
|
1962
|
+
| Status code | Description | Response headers |
|
|
1963
|
+
|-------------|-------------|------------------|
|
|
1964
|
+
|**200** | Successful response | - |
|
|
1965
|
+
|
|
1966
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
1967
|
+
|
|
1968
|
+
# **removeEventSessionVisiblePassType**
|
|
1969
|
+
> CreateEventSession200Response removeEventSessionVisiblePassType()
|
|
1970
|
+
|
|
1971
|
+
Remove Event Session Visible Pass Type endpoint
|
|
1972
|
+
|
|
1973
|
+
### Example
|
|
1974
|
+
|
|
1975
|
+
```typescript
|
|
1976
|
+
import {
|
|
1977
|
+
EventsSessionsApi,
|
|
1978
|
+
Configuration
|
|
1979
|
+
} from '@connectedxm/admin-sdk';
|
|
1980
|
+
|
|
1981
|
+
const configuration = new Configuration();
|
|
1982
|
+
const apiInstance = new EventsSessionsApi(configuration);
|
|
1983
|
+
|
|
1984
|
+
let eventId: string; //The event identifier (default to undefined)
|
|
1985
|
+
let sessionId: string; //The session identifier (default to undefined)
|
|
1986
|
+
let passTypeId: string; //The passType identifier (default to undefined)
|
|
1987
|
+
|
|
1988
|
+
const { status, data } = await apiInstance.removeEventSessionVisiblePassType(
|
|
1989
|
+
eventId,
|
|
1990
|
+
sessionId,
|
|
1991
|
+
passTypeId
|
|
1992
|
+
);
|
|
1993
|
+
```
|
|
1994
|
+
|
|
1995
|
+
### Parameters
|
|
1996
|
+
|
|
1997
|
+
|Name | Type | Description | Notes|
|
|
1998
|
+
|------------- | ------------- | ------------- | -------------|
|
|
1999
|
+
| **eventId** | [**string**] | The event identifier | defaults to undefined|
|
|
2000
|
+
| **sessionId** | [**string**] | The session identifier | defaults to undefined|
|
|
2001
|
+
| **passTypeId** | [**string**] | The passType identifier | defaults to undefined|
|
|
2002
|
+
|
|
2003
|
+
|
|
2004
|
+
### Return type
|
|
2005
|
+
|
|
2006
|
+
**CreateEventSession200Response**
|
|
2007
|
+
|
|
2008
|
+
### Authorization
|
|
2009
|
+
|
|
2010
|
+
[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)
|
|
2011
|
+
|
|
2012
|
+
### HTTP request headers
|
|
2013
|
+
|
|
2014
|
+
- **Content-Type**: Not defined
|
|
2015
|
+
- **Accept**: application/json
|
|
2016
|
+
|
|
2017
|
+
|
|
2018
|
+
### HTTP response details
|
|
2019
|
+
| Status code | Description | Response headers |
|
|
2020
|
+
|-------------|-------------|------------------|
|
|
2021
|
+
|**200** | Successful response | - |
|
|
2022
|
+
|
|
2023
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
2024
|
+
|
|
2025
|
+
# **removeEventSessionVisibleTier**
|
|
2026
|
+
> CreateEventSession200Response removeEventSessionVisibleTier()
|
|
2027
|
+
|
|
2028
|
+
Remove Event Session Visible Tier endpoint
|
|
2029
|
+
|
|
2030
|
+
### Example
|
|
2031
|
+
|
|
2032
|
+
```typescript
|
|
2033
|
+
import {
|
|
2034
|
+
EventsSessionsApi,
|
|
2035
|
+
Configuration
|
|
2036
|
+
} from '@connectedxm/admin-sdk';
|
|
2037
|
+
|
|
2038
|
+
const configuration = new Configuration();
|
|
2039
|
+
const apiInstance = new EventsSessionsApi(configuration);
|
|
2040
|
+
|
|
2041
|
+
let eventId: string; //The event identifier (default to undefined)
|
|
2042
|
+
let sessionId: string; //The session identifier (default to undefined)
|
|
2043
|
+
let tierId: string; //The tier identifier (default to undefined)
|
|
2044
|
+
|
|
2045
|
+
const { status, data } = await apiInstance.removeEventSessionVisibleTier(
|
|
2046
|
+
eventId,
|
|
2047
|
+
sessionId,
|
|
2048
|
+
tierId
|
|
2049
|
+
);
|
|
2050
|
+
```
|
|
2051
|
+
|
|
2052
|
+
### Parameters
|
|
2053
|
+
|
|
2054
|
+
|Name | Type | Description | Notes|
|
|
2055
|
+
|------------- | ------------- | ------------- | -------------|
|
|
2056
|
+
| **eventId** | [**string**] | The event identifier | defaults to undefined|
|
|
2057
|
+
| **sessionId** | [**string**] | The session identifier | defaults to undefined|
|
|
2058
|
+
| **tierId** | [**string**] | The tier identifier | defaults to undefined|
|
|
2059
|
+
|
|
2060
|
+
|
|
1695
2061
|
### Return type
|
|
1696
2062
|
|
|
1697
2063
|
**CreateEventSession200Response**
|