UNPKG

@tennac-booking/sdk

Version:

OpenAPI client for @tennac-booking/sdk

63 lines (40 loc) 1.71 kB
# EventBookingsStaffApi All URIs are relative to *http://localhost* |Method | HTTP request | Description| |------------- | ------------- | -------------| |[**eventBookingGuestCheckin**](#eventbookingguestcheckin) | **POST** /api/event-bookings/{eventBookingId}/guest-checkin | | # **eventBookingGuestCheckin** > EventBookingGuestCheckinResponse eventBookingGuestCheckin() Check-in d\'un invité sans compte (paiement sur place) pour une inscription événement ### Example ```typescript import { EventBookingsStaffApi, Configuration } from '@tennac-booking/sdk'; const configuration = new Configuration(); const apiInstance = new EventBookingsStaffApi(configuration); let eventBookingId: string; // (default to undefined) const { status, data } = await apiInstance.eventBookingGuestCheckin( eventBookingId ); ``` ### Parameters |Name | Type | Description | Notes| |------------- | ------------- | ------------- | -------------| | **eventBookingId** | [**string**] | | defaults to undefined| ### Return type **EventBookingGuestCheckinResponse** ### Authorization [bearerAuth](../README.md#bearerAuth) ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json ### HTTP response details | Status code | Description | Response headers | |-------------|-------------|------------------| |**200** | Check-in invité effectué avec succès | - | |**400** | Requête invalide | - | |**404** | EventBooking non trouvé | - | |**409** | Conflit de concurrence | - | [[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)