@gooday_corp/gooday-api-client 4.5.87 → 4.5.98
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/.openapi-generator/FILES +11 -0
- package/.openapi-generator/VERSION +1 -1
- package/api.ts +10359 -1310
- package/base.ts +24 -0
- package/common.ts +38 -15
- package/configuration.ts +18 -24
- package/docs/BookingPaymentCreateResponse.md +4 -0
- package/docs/ConfirmRSVPV2PaymentDTO.md +20 -0
- package/docs/CreateBookingPayload.md +2 -2
- package/docs/CreateRSVPEventBookingPayload.md +2 -2
- package/docs/CreateRSVPEventV2DTO.md +80 -0
- package/docs/CreateWalkInBookingPayload.md +2 -2
- package/docs/DiscountV2DTO.md +22 -0
- package/docs/HostV2DTO.md +22 -0
- package/docs/InviteRSVPArrayDTO.md +20 -0
- package/docs/InviteRSVPDTO.md +34 -0
- package/docs/JoinRSVPEventDTO.md +34 -0
- package/docs/PaymentDetailsPayload.md +2 -2
- package/docs/PlansApi.md +44 -0
- package/docs/RSVPV2Api.md +614 -0
- package/docs/RescheduleBookingPayload.md +1 -1
- package/docs/SetupRSVPV2PaymentDTO.md +20 -0
- package/docs/UpdateRSVPEventV2DTO.md +80 -0
- package/docs/UpdateRSVPStatusDTO.md +20 -0
- package/docs/UserEntity.md +2 -0
- package/docs/WaitlistPayloadDTO.md +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,614 @@
|
|
|
1
|
+
# RSVPV2Api
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *http://localhost:8080*
|
|
4
|
+
|
|
5
|
+
|Method | HTTP request | Description|
|
|
6
|
+
|------------- | ------------- | -------------|
|
|
7
|
+
|[**rSVPV2ControllerConfirmPayment**](#rsvpv2controllerconfirmpayment) | **POST** /v1/rsvp/v2/attendees/payment/confirm | |
|
|
8
|
+
|[**rSVPV2ControllerCreateEvent**](#rsvpv2controllercreateevent) | **POST** /v1/rsvp/v2/events | |
|
|
9
|
+
|[**rSVPV2ControllerGetAttendees**](#rsvpv2controllergetattendees) | **GET** /v1/rsvp/v2/events/{id}/attendees | |
|
|
10
|
+
|[**rSVPV2ControllerGetEventById**](#rsvpv2controllergeteventbyid) | **GET** /v1/rsvp/v2/events/{id} | |
|
|
11
|
+
|[**rSVPV2ControllerGetHostEvents**](#rsvpv2controllergethostevents) | **GET** /v1/rsvp/v2/host/events | |
|
|
12
|
+
|[**rSVPV2ControllerGetMyEvents**](#rsvpv2controllergetmyevents) | **GET** /v1/rsvp/v2/my/events | |
|
|
13
|
+
|[**rSVPV2ControllerInvite**](#rsvpv2controllerinvite) | **POST** /v1/rsvp/v2/events/{id}/invite | |
|
|
14
|
+
|[**rSVPV2ControllerJoinEvent**](#rsvpv2controllerjoinevent) | **POST** /v1/rsvp/v2/events/{id}/join | |
|
|
15
|
+
|[**rSVPV2ControllerSetupPayment**](#rsvpv2controllersetuppayment) | **POST** /v1/rsvp/v2/attendees/payment/setup | |
|
|
16
|
+
|[**rSVPV2ControllerUpdateEvent**](#rsvpv2controllerupdateevent) | **PUT** /v1/rsvp/v2/events/{id} | |
|
|
17
|
+
|[**rSVPV2ControllerUpdateStatus**](#rsvpv2controllerupdatestatus) | **PUT** /v1/rsvp/v2/attendees/{id}/status | |
|
|
18
|
+
|
|
19
|
+
# **rSVPV2ControllerConfirmPayment**
|
|
20
|
+
> rSVPV2ControllerConfirmPayment(confirmRSVPV2PaymentDTO)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
### Example
|
|
24
|
+
|
|
25
|
+
```typescript
|
|
26
|
+
import {
|
|
27
|
+
RSVPV2Api,
|
|
28
|
+
Configuration,
|
|
29
|
+
ConfirmRSVPV2PaymentDTO
|
|
30
|
+
} from './api';
|
|
31
|
+
|
|
32
|
+
const configuration = new Configuration();
|
|
33
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
34
|
+
|
|
35
|
+
let confirmRSVPV2PaymentDTO: ConfirmRSVPV2PaymentDTO; //
|
|
36
|
+
|
|
37
|
+
const { status, data } = await apiInstance.rSVPV2ControllerConfirmPayment(
|
|
38
|
+
confirmRSVPV2PaymentDTO
|
|
39
|
+
);
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Parameters
|
|
43
|
+
|
|
44
|
+
|Name | Type | Description | Notes|
|
|
45
|
+
|------------- | ------------- | ------------- | -------------|
|
|
46
|
+
| **confirmRSVPV2PaymentDTO** | **ConfirmRSVPV2PaymentDTO**| | |
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Return type
|
|
50
|
+
|
|
51
|
+
void (empty response body)
|
|
52
|
+
|
|
53
|
+
### Authorization
|
|
54
|
+
|
|
55
|
+
No authorization required
|
|
56
|
+
|
|
57
|
+
### HTTP request headers
|
|
58
|
+
|
|
59
|
+
- **Content-Type**: application/json
|
|
60
|
+
- **Accept**: Not defined
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
### HTTP response details
|
|
64
|
+
| Status code | Description | Response headers |
|
|
65
|
+
|-------------|-------------|------------------|
|
|
66
|
+
|**200** | Confirm payment success for an entire group | - |
|
|
67
|
+
|
|
68
|
+
[[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)
|
|
69
|
+
|
|
70
|
+
# **rSVPV2ControllerCreateEvent**
|
|
71
|
+
> rSVPV2ControllerCreateEvent(createRSVPEventV2DTO)
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
### Example
|
|
75
|
+
|
|
76
|
+
```typescript
|
|
77
|
+
import {
|
|
78
|
+
RSVPV2Api,
|
|
79
|
+
Configuration,
|
|
80
|
+
CreateRSVPEventV2DTO
|
|
81
|
+
} from './api';
|
|
82
|
+
|
|
83
|
+
const configuration = new Configuration();
|
|
84
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
85
|
+
|
|
86
|
+
let createRSVPEventV2DTO: CreateRSVPEventV2DTO; //
|
|
87
|
+
|
|
88
|
+
const { status, data } = await apiInstance.rSVPV2ControllerCreateEvent(
|
|
89
|
+
createRSVPEventV2DTO
|
|
90
|
+
);
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
### Parameters
|
|
94
|
+
|
|
95
|
+
|Name | Type | Description | Notes|
|
|
96
|
+
|------------- | ------------- | ------------- | -------------|
|
|
97
|
+
| **createRSVPEventV2DTO** | **CreateRSVPEventV2DTO**| | |
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### Return type
|
|
101
|
+
|
|
102
|
+
void (empty response body)
|
|
103
|
+
|
|
104
|
+
### Authorization
|
|
105
|
+
|
|
106
|
+
No authorization required
|
|
107
|
+
|
|
108
|
+
### HTTP request headers
|
|
109
|
+
|
|
110
|
+
- **Content-Type**: application/json
|
|
111
|
+
- **Accept**: Not defined
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
### HTTP response details
|
|
115
|
+
| Status code | Description | Response headers |
|
|
116
|
+
|-------------|-------------|------------------|
|
|
117
|
+
|**201** | Create a new RSVP event (public or private) | - |
|
|
118
|
+
|
|
119
|
+
[[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)
|
|
120
|
+
|
|
121
|
+
# **rSVPV2ControllerGetAttendees**
|
|
122
|
+
> rSVPV2ControllerGetAttendees()
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
### Example
|
|
126
|
+
|
|
127
|
+
```typescript
|
|
128
|
+
import {
|
|
129
|
+
RSVPV2Api,
|
|
130
|
+
Configuration
|
|
131
|
+
} from './api';
|
|
132
|
+
|
|
133
|
+
const configuration = new Configuration();
|
|
134
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
135
|
+
|
|
136
|
+
let id: string; // (default to undefined)
|
|
137
|
+
let page: number; // (optional) (default to undefined)
|
|
138
|
+
let pageSize: number; // (optional) (default to undefined)
|
|
139
|
+
let isInvited: boolean; // (optional) (default to undefined)
|
|
140
|
+
|
|
141
|
+
const { status, data } = await apiInstance.rSVPV2ControllerGetAttendees(
|
|
142
|
+
id,
|
|
143
|
+
page,
|
|
144
|
+
pageSize,
|
|
145
|
+
isInvited
|
|
146
|
+
);
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
### Parameters
|
|
150
|
+
|
|
151
|
+
|Name | Type | Description | Notes|
|
|
152
|
+
|------------- | ------------- | ------------- | -------------|
|
|
153
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
154
|
+
| **page** | [**number**] | | (optional) defaults to undefined|
|
|
155
|
+
| **pageSize** | [**number**] | | (optional) defaults to undefined|
|
|
156
|
+
| **isInvited** | [**boolean**] | | (optional) defaults to undefined|
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
### Return type
|
|
160
|
+
|
|
161
|
+
void (empty response body)
|
|
162
|
+
|
|
163
|
+
### Authorization
|
|
164
|
+
|
|
165
|
+
No authorization required
|
|
166
|
+
|
|
167
|
+
### HTTP request headers
|
|
168
|
+
|
|
169
|
+
- **Content-Type**: Not defined
|
|
170
|
+
- **Accept**: Not defined
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
### HTTP response details
|
|
174
|
+
| Status code | Description | Response headers |
|
|
175
|
+
|-------------|-------------|------------------|
|
|
176
|
+
|**200** | Get list of attendees (scalable with pagination) | - |
|
|
177
|
+
|
|
178
|
+
[[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)
|
|
179
|
+
|
|
180
|
+
# **rSVPV2ControllerGetEventById**
|
|
181
|
+
> rSVPV2ControllerGetEventById()
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
### Example
|
|
185
|
+
|
|
186
|
+
```typescript
|
|
187
|
+
import {
|
|
188
|
+
RSVPV2Api,
|
|
189
|
+
Configuration
|
|
190
|
+
} from './api';
|
|
191
|
+
|
|
192
|
+
const configuration = new Configuration();
|
|
193
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
194
|
+
|
|
195
|
+
let id: string; // (default to undefined)
|
|
196
|
+
|
|
197
|
+
const { status, data } = await apiInstance.rSVPV2ControllerGetEventById(
|
|
198
|
+
id
|
|
199
|
+
);
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
### Parameters
|
|
203
|
+
|
|
204
|
+
|Name | Type | Description | Notes|
|
|
205
|
+
|------------- | ------------- | ------------- | -------------|
|
|
206
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
### Return type
|
|
210
|
+
|
|
211
|
+
void (empty response body)
|
|
212
|
+
|
|
213
|
+
### Authorization
|
|
214
|
+
|
|
215
|
+
No authorization required
|
|
216
|
+
|
|
217
|
+
### HTTP request headers
|
|
218
|
+
|
|
219
|
+
- **Content-Type**: Not defined
|
|
220
|
+
- **Accept**: Not defined
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
### HTTP response details
|
|
224
|
+
| Status code | Description | Response headers |
|
|
225
|
+
|-------------|-------------|------------------|
|
|
226
|
+
|**200** | Get event details by ID with attendee summary | - |
|
|
227
|
+
|
|
228
|
+
[[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)
|
|
229
|
+
|
|
230
|
+
# **rSVPV2ControllerGetHostEvents**
|
|
231
|
+
> rSVPV2ControllerGetHostEvents()
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
### Example
|
|
235
|
+
|
|
236
|
+
```typescript
|
|
237
|
+
import {
|
|
238
|
+
RSVPV2Api,
|
|
239
|
+
Configuration
|
|
240
|
+
} from './api';
|
|
241
|
+
|
|
242
|
+
const configuration = new Configuration();
|
|
243
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
244
|
+
|
|
245
|
+
let page: number; // (default to undefined)
|
|
246
|
+
let pageSize: number; // (default to undefined)
|
|
247
|
+
let search: string; // (optional) (default to undefined)
|
|
248
|
+
let venue: string; // (optional) (default to undefined)
|
|
249
|
+
|
|
250
|
+
const { status, data } = await apiInstance.rSVPV2ControllerGetHostEvents(
|
|
251
|
+
page,
|
|
252
|
+
pageSize,
|
|
253
|
+
search,
|
|
254
|
+
venue
|
|
255
|
+
);
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
### Parameters
|
|
259
|
+
|
|
260
|
+
|Name | Type | Description | Notes|
|
|
261
|
+
|------------- | ------------- | ------------- | -------------|
|
|
262
|
+
| **page** | [**number**] | | defaults to undefined|
|
|
263
|
+
| **pageSize** | [**number**] | | defaults to undefined|
|
|
264
|
+
| **search** | [**string**] | | (optional) defaults to undefined|
|
|
265
|
+
| **venue** | [**string**] | | (optional) defaults to undefined|
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
### Return type
|
|
269
|
+
|
|
270
|
+
void (empty response body)
|
|
271
|
+
|
|
272
|
+
### Authorization
|
|
273
|
+
|
|
274
|
+
[bearer](../README.md#bearer)
|
|
275
|
+
|
|
276
|
+
### HTTP request headers
|
|
277
|
+
|
|
278
|
+
- **Content-Type**: Not defined
|
|
279
|
+
- **Accept**: Not defined
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
### HTTP response details
|
|
283
|
+
| Status code | Description | Response headers |
|
|
284
|
+
|-------------|-------------|------------------|
|
|
285
|
+
|**200** | Get list of events where the user is a host | - |
|
|
286
|
+
|
|
287
|
+
[[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)
|
|
288
|
+
|
|
289
|
+
# **rSVPV2ControllerGetMyEvents**
|
|
290
|
+
> rSVPV2ControllerGetMyEvents()
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
### Example
|
|
294
|
+
|
|
295
|
+
```typescript
|
|
296
|
+
import {
|
|
297
|
+
RSVPV2Api,
|
|
298
|
+
Configuration
|
|
299
|
+
} from './api';
|
|
300
|
+
|
|
301
|
+
const configuration = new Configuration();
|
|
302
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
303
|
+
|
|
304
|
+
let page: number; // (default to undefined)
|
|
305
|
+
let pageSize: number; // (default to undefined)
|
|
306
|
+
let search: string; // (optional) (default to undefined)
|
|
307
|
+
let venue: string; // (optional) (default to undefined)
|
|
308
|
+
|
|
309
|
+
const { status, data } = await apiInstance.rSVPV2ControllerGetMyEvents(
|
|
310
|
+
page,
|
|
311
|
+
pageSize,
|
|
312
|
+
search,
|
|
313
|
+
venue
|
|
314
|
+
);
|
|
315
|
+
```
|
|
316
|
+
|
|
317
|
+
### Parameters
|
|
318
|
+
|
|
319
|
+
|Name | Type | Description | Notes|
|
|
320
|
+
|------------- | ------------- | ------------- | -------------|
|
|
321
|
+
| **page** | [**number**] | | defaults to undefined|
|
|
322
|
+
| **pageSize** | [**number**] | | defaults to undefined|
|
|
323
|
+
| **search** | [**string**] | | (optional) defaults to undefined|
|
|
324
|
+
| **venue** | [**string**] | | (optional) defaults to undefined|
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
### Return type
|
|
328
|
+
|
|
329
|
+
void (empty response body)
|
|
330
|
+
|
|
331
|
+
### Authorization
|
|
332
|
+
|
|
333
|
+
[bearer](../README.md#bearer)
|
|
334
|
+
|
|
335
|
+
### HTTP request headers
|
|
336
|
+
|
|
337
|
+
- **Content-Type**: Not defined
|
|
338
|
+
- **Accept**: Not defined
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### HTTP response details
|
|
342
|
+
| Status code | Description | Response headers |
|
|
343
|
+
|-------------|-------------|------------------|
|
|
344
|
+
|**200** | Get list of events hosted by OR joined by the user | - |
|
|
345
|
+
|
|
346
|
+
[[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)
|
|
347
|
+
|
|
348
|
+
# **rSVPV2ControllerInvite**
|
|
349
|
+
> rSVPV2ControllerInvite(inviteRSVPArrayDTO)
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
### Example
|
|
353
|
+
|
|
354
|
+
```typescript
|
|
355
|
+
import {
|
|
356
|
+
RSVPV2Api,
|
|
357
|
+
Configuration,
|
|
358
|
+
InviteRSVPArrayDTO
|
|
359
|
+
} from './api';
|
|
360
|
+
|
|
361
|
+
const configuration = new Configuration();
|
|
362
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
363
|
+
|
|
364
|
+
let id: string; // (default to undefined)
|
|
365
|
+
let inviteRSVPArrayDTO: InviteRSVPArrayDTO; //
|
|
366
|
+
|
|
367
|
+
const { status, data } = await apiInstance.rSVPV2ControllerInvite(
|
|
368
|
+
id,
|
|
369
|
+
inviteRSVPArrayDTO
|
|
370
|
+
);
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
### Parameters
|
|
374
|
+
|
|
375
|
+
|Name | Type | Description | Notes|
|
|
376
|
+
|------------- | ------------- | ------------- | -------------|
|
|
377
|
+
| **inviteRSVPArrayDTO** | **InviteRSVPArrayDTO**| | |
|
|
378
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
### Return type
|
|
382
|
+
|
|
383
|
+
void (empty response body)
|
|
384
|
+
|
|
385
|
+
### Authorization
|
|
386
|
+
|
|
387
|
+
[bearer](../README.md#bearer)
|
|
388
|
+
|
|
389
|
+
### HTTP request headers
|
|
390
|
+
|
|
391
|
+
- **Content-Type**: application/json
|
|
392
|
+
- **Accept**: Not defined
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
### HTTP response details
|
|
396
|
+
| Status code | Description | Response headers |
|
|
397
|
+
|-------------|-------------|------------------|
|
|
398
|
+
|**200** | Invite participants to an event | - |
|
|
399
|
+
|
|
400
|
+
[[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)
|
|
401
|
+
|
|
402
|
+
# **rSVPV2ControllerJoinEvent**
|
|
403
|
+
> rSVPV2ControllerJoinEvent(joinRSVPEventDTO)
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
### Example
|
|
407
|
+
|
|
408
|
+
```typescript
|
|
409
|
+
import {
|
|
410
|
+
RSVPV2Api,
|
|
411
|
+
Configuration,
|
|
412
|
+
JoinRSVPEventDTO
|
|
413
|
+
} from './api';
|
|
414
|
+
|
|
415
|
+
const configuration = new Configuration();
|
|
416
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
417
|
+
|
|
418
|
+
let id: string; // (default to undefined)
|
|
419
|
+
let joinRSVPEventDTO: JoinRSVPEventDTO; //
|
|
420
|
+
|
|
421
|
+
const { status, data } = await apiInstance.rSVPV2ControllerJoinEvent(
|
|
422
|
+
id,
|
|
423
|
+
joinRSVPEventDTO
|
|
424
|
+
);
|
|
425
|
+
```
|
|
426
|
+
|
|
427
|
+
### Parameters
|
|
428
|
+
|
|
429
|
+
|Name | Type | Description | Notes|
|
|
430
|
+
|------------- | ------------- | ------------- | -------------|
|
|
431
|
+
| **joinRSVPEventDTO** | **JoinRSVPEventDTO**| | |
|
|
432
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
### Return type
|
|
436
|
+
|
|
437
|
+
void (empty response body)
|
|
438
|
+
|
|
439
|
+
### Authorization
|
|
440
|
+
|
|
441
|
+
[bearer](../README.md#bearer)
|
|
442
|
+
|
|
443
|
+
### HTTP request headers
|
|
444
|
+
|
|
445
|
+
- **Content-Type**: application/json
|
|
446
|
+
- **Accept**: Not defined
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
### HTTP response details
|
|
450
|
+
| Status code | Description | Response headers |
|
|
451
|
+
|-------------|-------------|------------------|
|
|
452
|
+
|**200** | Join/RSVP to an event | - |
|
|
453
|
+
|
|
454
|
+
[[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)
|
|
455
|
+
|
|
456
|
+
# **rSVPV2ControllerSetupPayment**
|
|
457
|
+
> rSVPV2ControllerSetupPayment(setupRSVPV2PaymentDTO)
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
### Example
|
|
461
|
+
|
|
462
|
+
```typescript
|
|
463
|
+
import {
|
|
464
|
+
RSVPV2Api,
|
|
465
|
+
Configuration,
|
|
466
|
+
SetupRSVPV2PaymentDTO
|
|
467
|
+
} from './api';
|
|
468
|
+
|
|
469
|
+
const configuration = new Configuration();
|
|
470
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
471
|
+
|
|
472
|
+
let setupRSVPV2PaymentDTO: SetupRSVPV2PaymentDTO; //
|
|
473
|
+
|
|
474
|
+
const { status, data } = await apiInstance.rSVPV2ControllerSetupPayment(
|
|
475
|
+
setupRSVPV2PaymentDTO
|
|
476
|
+
);
|
|
477
|
+
```
|
|
478
|
+
|
|
479
|
+
### Parameters
|
|
480
|
+
|
|
481
|
+
|Name | Type | Description | Notes|
|
|
482
|
+
|------------- | ------------- | ------------- | -------------|
|
|
483
|
+
| **setupRSVPV2PaymentDTO** | **SetupRSVPV2PaymentDTO**| | |
|
|
484
|
+
|
|
485
|
+
|
|
486
|
+
### Return type
|
|
487
|
+
|
|
488
|
+
void (empty response body)
|
|
489
|
+
|
|
490
|
+
### Authorization
|
|
491
|
+
|
|
492
|
+
No authorization required
|
|
493
|
+
|
|
494
|
+
### HTTP request headers
|
|
495
|
+
|
|
496
|
+
- **Content-Type**: application/json
|
|
497
|
+
- **Accept**: Not defined
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
### HTTP response details
|
|
501
|
+
| Status code | Description | Response headers |
|
|
502
|
+
|-------------|-------------|------------------|
|
|
503
|
+
|**200** | Setup payment intent for multiple attendees at once | - |
|
|
504
|
+
|
|
505
|
+
[[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)
|
|
506
|
+
|
|
507
|
+
# **rSVPV2ControllerUpdateEvent**
|
|
508
|
+
> rSVPV2ControllerUpdateEvent(updateRSVPEventV2DTO)
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
### Example
|
|
512
|
+
|
|
513
|
+
```typescript
|
|
514
|
+
import {
|
|
515
|
+
RSVPV2Api,
|
|
516
|
+
Configuration,
|
|
517
|
+
UpdateRSVPEventV2DTO
|
|
518
|
+
} from './api';
|
|
519
|
+
|
|
520
|
+
const configuration = new Configuration();
|
|
521
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
522
|
+
|
|
523
|
+
let id: string; // (default to undefined)
|
|
524
|
+
let updateRSVPEventV2DTO: UpdateRSVPEventV2DTO; //
|
|
525
|
+
|
|
526
|
+
const { status, data } = await apiInstance.rSVPV2ControllerUpdateEvent(
|
|
527
|
+
id,
|
|
528
|
+
updateRSVPEventV2DTO
|
|
529
|
+
);
|
|
530
|
+
```
|
|
531
|
+
|
|
532
|
+
### Parameters
|
|
533
|
+
|
|
534
|
+
|Name | Type | Description | Notes|
|
|
535
|
+
|------------- | ------------- | ------------- | -------------|
|
|
536
|
+
| **updateRSVPEventV2DTO** | **UpdateRSVPEventV2DTO**| | |
|
|
537
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
### Return type
|
|
541
|
+
|
|
542
|
+
void (empty response body)
|
|
543
|
+
|
|
544
|
+
### Authorization
|
|
545
|
+
|
|
546
|
+
[bearer](../README.md#bearer)
|
|
547
|
+
|
|
548
|
+
### HTTP request headers
|
|
549
|
+
|
|
550
|
+
- **Content-Type**: application/json
|
|
551
|
+
- **Accept**: Not defined
|
|
552
|
+
|
|
553
|
+
|
|
554
|
+
### HTTP response details
|
|
555
|
+
| Status code | Description | Response headers |
|
|
556
|
+
|-------------|-------------|------------------|
|
|
557
|
+
|**200** | Update an existing RSVP event | - |
|
|
558
|
+
|
|
559
|
+
[[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)
|
|
560
|
+
|
|
561
|
+
# **rSVPV2ControllerUpdateStatus**
|
|
562
|
+
> rSVPV2ControllerUpdateStatus(updateRSVPStatusDTO)
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
### Example
|
|
566
|
+
|
|
567
|
+
```typescript
|
|
568
|
+
import {
|
|
569
|
+
RSVPV2Api,
|
|
570
|
+
Configuration,
|
|
571
|
+
UpdateRSVPStatusDTO
|
|
572
|
+
} from './api';
|
|
573
|
+
|
|
574
|
+
const configuration = new Configuration();
|
|
575
|
+
const apiInstance = new RSVPV2Api(configuration);
|
|
576
|
+
|
|
577
|
+
let id: string; // (default to undefined)
|
|
578
|
+
let updateRSVPStatusDTO: UpdateRSVPStatusDTO; //
|
|
579
|
+
|
|
580
|
+
const { status, data } = await apiInstance.rSVPV2ControllerUpdateStatus(
|
|
581
|
+
id,
|
|
582
|
+
updateRSVPStatusDTO
|
|
583
|
+
);
|
|
584
|
+
```
|
|
585
|
+
|
|
586
|
+
### Parameters
|
|
587
|
+
|
|
588
|
+
|Name | Type | Description | Notes|
|
|
589
|
+
|------------- | ------------- | ------------- | -------------|
|
|
590
|
+
| **updateRSVPStatusDTO** | **UpdateRSVPStatusDTO**| | |
|
|
591
|
+
| **id** | [**string**] | | defaults to undefined|
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
### Return type
|
|
595
|
+
|
|
596
|
+
void (empty response body)
|
|
597
|
+
|
|
598
|
+
### Authorization
|
|
599
|
+
|
|
600
|
+
[bearer](../README.md#bearer)
|
|
601
|
+
|
|
602
|
+
### HTTP request headers
|
|
603
|
+
|
|
604
|
+
- **Content-Type**: application/json
|
|
605
|
+
- **Accept**: Not defined
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
### HTTP response details
|
|
609
|
+
| Status code | Description | Response headers |
|
|
610
|
+
|-------------|-------------|------------------|
|
|
611
|
+
|**200** | Update your own status or manage attendees (if host) | - |
|
|
612
|
+
|
|
613
|
+
[[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)
|
|
614
|
+
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
|
-
**date** | **string** | The start date of the booking | [default to 2026-04-
|
|
8
|
+
**date** | **string** | The start date of the booking | [default to 2026-04-09T07:49:40Z]
|
|
9
9
|
**from** | **string** | | [optional] [default to undefined]
|
|
10
10
|
**to** | **string** | | [optional] [default to undefined]
|
|
11
11
|
**notes** | **string** | | [optional] [default to undefined]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# SetupRSVPV2PaymentDTO
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**paymentGroupId** | **string** | | [default to undefined]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```typescript
|
|
13
|
+
import { SetupRSVPV2PaymentDTO } from './api';
|
|
14
|
+
|
|
15
|
+
const instance: SetupRSVPV2PaymentDTO = {
|
|
16
|
+
paymentGroupId,
|
|
17
|
+
};
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|