# EventsMatchesApi

All URIs are relative to *https://admin-api.connected.dev*

|Method | HTTP request | Description|
|------------- | ------------- | -------------|
|[**addEventMatchPass**](#addeventmatchpass) | **POST** /events/{eventId}/rounds/{roundId}/matches/{matchId}/passes/{passId} | Assign a pass to a match|
|[**createEventMatch**](#createeventmatch) | **POST** /events/{eventId}/rounds/{roundId}/matches | Create a match within a round|
|[**createEventRound**](#createeventround) | **POST** /events/{eventId}/rounds | Create a matchmaking round for an event|
|[**deleteEventMatch**](#deleteeventmatch) | **DELETE** /events/{eventId}/rounds/{roundId}/matches/{matchId} | Delete a match from a round|
|[**deleteEventRound**](#deleteeventround) | **DELETE** /events/{eventId}/rounds/{roundId} | Delete a matchmaking round|
|[**getEventRoundMatch**](#geteventroundmatch) | **GET** /events/{eventId}/rounds/{roundId}/matches/{matchId} | Get a matchmaking round match|
|[**getEventRoundMatchPasses**](#geteventroundmatchpasses) | **GET** /events/{eventId}/rounds/{roundId}/matches/{matchId}/passes | List passes assigned to a match|
|[**getEventRoundMatches**](#geteventroundmatches) | **GET** /events/{eventId}/rounds/{roundId}/matches | List a round\&#39;s networking matches|
|[**getEventRoundPasses**](#geteventroundpasses) | **GET** /events/{eventId}/rounds/{roundId}/passes | List a round\&#39;s assigned or unassigned passes|
|[**getEventRoundQuestions**](#geteventroundquestions) | **GET** /events/{eventId}/rounds/{roundId}/questions | List an event\&#39;s registration questions for a round|
|[**getEventRoundQuestionsSummary**](#geteventroundquestionssummary) | **GET** /events/{eventId}/rounds/{roundId}/questions/summary | Summarize a round\&#39;s question matching types|
|[**getEventRounds**](#geteventrounds) | **GET** /events/{eventId}/rounds | List an event\&#39;s networking rounds|
|[**getEventSessionsWithRounds**](#geteventsessionswithrounds) | **GET** /events/{eventId}/all-sessions/rounds | List event sessions that have networking rounds|
|[**removeEventMatchPass**](#removeeventmatchpass) | **DELETE** /events/{eventId}/rounds/{roundId}/matches/{matchId}/passes/{passId} | Remove a pass from a match|
|[**startEventRoundMatchmaking**](#starteventroundmatchmaking) | **POST** /events/{eventId}/rounds/{roundId}/start | Start matchmaking for an event round|
|[**updateEventMatch**](#updateeventmatch) | **PUT** /events/{eventId}/rounds/{roundId}/matches/{matchId} | Update an event round match|
|[**updateEventRoundQuestion**](#updateeventroundquestion) | **PUT** /events/{eventId}/rounds/{roundId}/questions/{questionId} | Set a registration question\&#39;s matchmaking type for a round|

# **addEventMatchPass**
> CreateAccountInvitations200Response addEventMatchPass()

Connects an attendee\'s pass to a match within an event round, disconnecting it from any other match in that round first, requiring update permission on attendees.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let matchId: string; //The match identifier (default to undefined)
let passId: string; //The pass identifier (default to undefined)

const { status, data } = await apiInstance.addEventMatchPass(
    eventId,
    roundId,
    matchId,
    passId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **matchId** | [**string**] | The match identifier | defaults to undefined|
| **passId** | [**string**] | The pass identifier | defaults to undefined|


### Return type

**CreateAccountInvitations200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **createEventMatch**
> CreateEventMatch200Response createEventMatch()

Creates a new match in the given event round, automatically assigning it the next sequential match number, requiring create permission on events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)

const { status, data } = await apiInstance.createEventMatch(
    eventId,
    roundId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|


### Return type

**CreateEventMatch200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **createEventRound**
> CreateEventRound200Response createEventRound()

Creates a new round for the given event, automatically assigning it the next sequential round number, requiring update permission on events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)

const { status, data } = await apiInstance.createEventRound(
    eventId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|


### Return type

**CreateEventRound200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **deleteEventMatch**
> CreateAccountInvitations200Response deleteEventMatch()

Permanently deletes a single match from an event round, requiring update permission on events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let matchId: string; //The match identifier (default to undefined)

const { status, data } = await apiInstance.deleteEventMatch(
    eventId,
    roundId,
    matchId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **matchId** | [**string**] | The match identifier | defaults to undefined|


### Return type

**CreateAccountInvitations200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **deleteEventRound**
> CreateAccountInvitations200Response deleteEventRound()

Permanently deletes a round, along with its matches, from an event, requiring update permission on events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)

const { status, data } = await apiInstance.deleteEventRound(
    eventId,
    roundId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|


### Return type

**CreateAccountInvitations200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **getEventRoundMatch**
> CreateEventMatch200Response getEventRoundMatch()

Returns the details of a single match within a matchmaking round for the given event, identified by round ID and match ID; requires read permission on events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let matchId: string; //The match identifier (default to undefined)

const { status, data } = await apiInstance.getEventRoundMatch(
    eventId,
    roundId,
    matchId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **matchId** | [**string**] | The match identifier | defaults to undefined|


### Return type

**CreateEventMatch200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **getEventRoundMatchPasses**
> GetEventAddOnPasses200Response getEventRoundMatchPasses()

Returns a paginated list of event passes (attendee purchases) assigned to a specific match within a networking round, with optional search; requires read access to events and attendees.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let matchId: string; //The match identifier (default to undefined)
let page: number; //Page number (optional) (default to 1)
let pageSize: number; //Number of items per page (optional) (default to 25)
let orderBy: string; //Field to order by (optional) (default to undefined)
let search: string; //Search query (optional) (default to undefined)

const { status, data } = await apiInstance.getEventRoundMatchPasses(
    eventId,
    roundId,
    matchId,
    page,
    pageSize,
    orderBy,
    search
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **matchId** | [**string**] | The match identifier | defaults to undefined|
| **page** | [**number**] | Page number | (optional) defaults to 1|
| **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
| **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
| **search** | [**string**] | Search query | (optional) defaults to undefined|


### Return type

**GetEventAddOnPasses200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **getEventRoundMatches**
> GetEventRoundMatches200Response getEventRoundMatches()

Returns a paginated list of matches (attendee pairings/groupings) generated for a networking round, with optional search and sort; requires read access to events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let page: number; //Page number (optional) (default to 1)
let pageSize: number; //Number of items per page (optional) (default to 25)
let orderBy: string; //Field to order by (optional) (default to undefined)
let search: string; //Search query (optional) (default to undefined)

const { status, data } = await apiInstance.getEventRoundMatches(
    eventId,
    roundId,
    page,
    pageSize,
    orderBy,
    search
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **page** | [**number**] | Page number | (optional) defaults to 1|
| **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
| **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
| **search** | [**string**] | Search query | (optional) defaults to undefined|


### Return type

**GetEventRoundMatches200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **getEventRoundPasses**
> GetEventAddOnPasses200Response getEventRoundPasses()

Returns a paginated list of event passes eligible for a networking round, filterable by the `assigned` flag to show passes already matched into the round versus those still unmatched, with optional search; requires read access to events and attendees.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let assigned: boolean; //Filter by assigned (default to undefined)
let page: number; //Page number (optional) (default to 1)
let pageSize: number; //Number of items per page (optional) (default to 25)
let orderBy: string; //Field to order by (optional) (default to undefined)
let search: string; //Search query (optional) (default to undefined)

const { status, data } = await apiInstance.getEventRoundPasses(
    eventId,
    roundId,
    assigned,
    page,
    pageSize,
    orderBy,
    search
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **assigned** | [**boolean**] | Filter by assigned | defaults to undefined|
| **page** | [**number**] | Page number | (optional) defaults to 1|
| **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
| **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
| **search** | [**string**] | Search query | (optional) defaults to undefined|


### Return type

**GetEventAddOnPasses200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **getEventRoundQuestions**
> GetEventRoundQuestions200Response getEventRoundQuestions()

Returns a paginated list of the event\'s registration questions annotated with their matching-round status (e.g. included, weighted, or excluded) for the given round, with optional search; requires read access to events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let page: number; //Page number (optional) (default to 1)
let pageSize: number; //Number of items per page (optional) (default to 25)
let orderBy: string; //Field to order by (optional) (default to undefined)
let search: string; //Search query (optional) (default to undefined)

const { status, data } = await apiInstance.getEventRoundQuestions(
    eventId,
    roundId,
    page,
    pageSize,
    orderBy,
    search
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **page** | [**number**] | Page number | (optional) defaults to 1|
| **pageSize** | [**number**] | Number of items per page | (optional) defaults to 25|
| **orderBy** | [**string**] | Field to order by | (optional) defaults to undefined|
| **search** | [**string**] | Search query | (optional) defaults to undefined|


### Return type

**GetEventRoundQuestions200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **getEventRoundQuestionsSummary**
> GetEventRoundQuestionsSummary200Response getEventRoundQuestionsSummary()

Returns a map of registration question ID to its matchmaking type (e.g. how it is weighted or excluded) for the given networking round; requires read access to events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)

const { status, data } = await apiInstance.getEventRoundQuestionsSummary(
    eventId,
    roundId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|


### Return type

**GetEventRoundQuestionsSummary200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **getEventRounds**
> GetEventRounds200Response getEventRounds()

Returns all matchmaking/networking rounds configured for the given event; requires read access to events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)

const { status, data } = await apiInstance.getEventRounds(
    eventId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|


### Return type

**GetEventRounds200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **getEventSessionsWithRounds**
> GetBookingSpaceSlots200Response getEventSessionsWithRounds()

Returns every session for the event that has at least one networking round with matches, with each session\'s rounds embedded; requires read access to events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)

const { status, data } = await apiInstance.getEventSessionsWithRounds(
    eventId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|


### Return type

**GetBookingSpaceSlots200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **removeEventMatchPass**
> CreateAccountInvitations200Response removeEventMatchPass()

Disconnects an attendee\'s pass from a match within an event round, requiring update permission on attendees.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let matchId: string; //The match identifier (default to undefined)
let passId: string; //The pass identifier (default to undefined)

const { status, data } = await apiInstance.removeEventMatchPass(
    eventId,
    roundId,
    matchId,
    passId
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **matchId** | [**string**] | The match identifier | defaults to undefined|
| **passId** | [**string**] | The pass identifier | defaults to undefined|


### Return type

**CreateAccountInvitations200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **startEventRoundMatchmaking**
> CreateAccountInvitations200Response startEventRoundMatchmaking(startEventRoundMatchmakingRequest)

Kicks off automated matchmaking for the given round of an event, setting the target size for each generated match and queuing the matchmaking job for asynchronous processing; requires the round to have at least one question configured for matching and requires update permission on events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration,
    StartEventRoundMatchmakingRequest
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let startEventRoundMatchmakingRequest: StartEventRoundMatchmakingRequest; //

const { status, data } = await apiInstance.startEventRoundMatchmaking(
    eventId,
    roundId,
    startEventRoundMatchmakingRequest
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **startEventRoundMatchmakingRequest** | **StartEventRoundMatchmakingRequest**|  | |
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|


### Return type

**CreateAccountInvitations200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **updateEventMatch**
> CreateEventMatch200Response updateEventMatch(matchUpdateInputs)

Updates the fields (such as room or session assignment) of a single match belonging to a matchmaking round for an event, and requires update permission on events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration,
    MatchUpdateInputs
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let matchId: string; //The match identifier (default to undefined)
let matchUpdateInputs: MatchUpdateInputs; //

const { status, data } = await apiInstance.updateEventMatch(
    eventId,
    roundId,
    matchId,
    matchUpdateInputs
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **matchUpdateInputs** | **MatchUpdateInputs**|  | |
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **matchId** | [**string**] | The match identifier | defaults to undefined|


### Return type

**CreateEventMatch200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

# **updateEventRoundQuestion**
> UpdateEventRoundQuestion200Response updateEventRoundQuestion(roundEventQuestionUpdataInputs)

Sets how a specific event registration question is used by matchmaking for a given round (include, split, or exclude), creating the round-question link if it doesn\'t already exist, and requires update permission on events.

### Example

```typescript
import {
    EventsMatchesApi,
    Configuration,
    RoundEventQuestionUpdataInputs
} from '@connectedxm/admin-sdk';

const configuration = new Configuration();
const apiInstance = new EventsMatchesApi(configuration);

let eventId: string; //The event identifier (default to undefined)
let roundId: string; //The round identifier (default to undefined)
let questionId: string; //The question identifier (default to undefined)
let roundEventQuestionUpdataInputs: RoundEventQuestionUpdataInputs; //

const { status, data } = await apiInstance.updateEventRoundQuestion(
    eventId,
    roundId,
    questionId,
    roundEventQuestionUpdataInputs
);
```

### Parameters

|Name | Type | Description  | Notes|
|------------- | ------------- | ------------- | -------------|
| **roundEventQuestionUpdataInputs** | **RoundEventQuestionUpdataInputs**|  | |
| **eventId** | [**string**] | The event identifier | defaults to undefined|
| **roundId** | [**string**] | The round identifier | defaults to undefined|
| **questionId** | [**string**] | The question identifier | defaults to undefined|


### Return type

**UpdateEventRoundQuestion200Response**

### Authorization

[ApiKeyAuth](../README.md#ApiKeyAuth), [OrganizationId](../README.md#OrganizationId)

### HTTP request headers

 - **Content-Type**: application/json
 - **Accept**: application/json


### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
|**200** | Successful response |  -  |

[[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)

