reach-api-sdk 1.0.206 → 1.0.208

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.
Files changed (44) hide show
  1. package/dist/reach-sdk.d.ts +16293 -14979
  2. package/dist/reach-sdk.js +1373 -417
  3. package/package.json +1 -1
  4. package/src/apiClient.ts +6 -0
  5. package/src/definition/swagger.yaml +3611 -267
  6. package/src/index.ts +18 -0
  7. package/src/models/Attendee.ts +9 -4
  8. package/src/models/AttendeePatch.ts +13 -0
  9. package/src/models/AttendeePost.ts +14 -1
  10. package/src/models/AttendeeWalletDeductionPreview.ts +51 -0
  11. package/src/models/CoursePatch.ts +2 -0
  12. package/src/models/CoursePost.ts +2 -0
  13. package/src/models/Customer.ts +6 -6
  14. package/src/models/CustomerAccountInvitePatch.ts +26 -0
  15. package/src/models/CustomerPatch.ts +2 -2
  16. package/src/models/CustomerPost.ts +2 -2
  17. package/src/models/CustomerWalletDeductionPreview.ts +36 -0
  18. package/src/models/EndUserIdentity.ts +4 -0
  19. package/src/models/Order.ts +6 -0
  20. package/src/models/RecentOrderActivityReport.ts +4 -0
  21. package/src/models/SessionPatch.ts +2 -0
  22. package/src/models/SessionPost.ts +2 -0
  23. package/src/models/SurveySubmitAttendee.ts +4 -0
  24. package/src/models/TenantSetting.ts +8 -0
  25. package/src/models/TotalRevenueReport.ts +4 -0
  26. package/src/models/VenuePatch.ts +2 -0
  27. package/src/models/VenuePost.ts +3 -0
  28. package/src/models/Wallet.ts +60 -0
  29. package/src/models/WalletDeductionPreview.ts +44 -0
  30. package/src/models/WalletPage.ts +12 -0
  31. package/src/models/WalletPatch.ts +23 -0
  32. package/src/models/WalletPost.ts +29 -0
  33. package/src/models/WalletRemoveCreditPost.ts +19 -0
  34. package/src/models/WalletTopUpPost.ts +19 -0
  35. package/src/models/WalletTrackingLevel.ts +12 -0
  36. package/src/models/WalletTransaction.ts +61 -0
  37. package/src/models/WalletTransactionPage.ts +12 -0
  38. package/src/models/WalletTransactionPatch.ts +22 -0
  39. package/src/models/WalletTransactionPost.ts +33 -0
  40. package/src/models/WalletTransactionType.ts +14 -0
  41. package/src/services/AttendeesService.ts +0 -30
  42. package/src/services/CustomersService.ts +35 -0
  43. package/src/services/WalletTransactionsService.ts +755 -0
  44. package/src/services/WalletsService.ts +901 -0
@@ -2236,12 +2236,6 @@ paths:
2236
2236
  summary: Gets a list of resources.
2237
2237
  operationId: GetPage
2238
2238
  parameters:
2239
- - name: VenueId
2240
- in: query
2241
- description: Gets or sets the queryable venue id.
2242
- schema:
2243
- type: string
2244
- format: uuid
2245
2239
  - name: CustomerId
2246
2240
  in: query
2247
2241
  description: Gets or sets the queryable customer id.
@@ -2557,12 +2551,6 @@ paths:
2557
2551
  summary: Returns a value indicating whether the resource exists in the database given the provided search params.
2558
2552
  operationId: Exists
2559
2553
  parameters:
2560
- - name: VenueId
2561
- in: query
2562
- description: Gets or sets the queryable venue id.
2563
- schema:
2564
- type: string
2565
- format: uuid
2566
2554
  - name: CustomerId
2567
2555
  in: query
2568
2556
  description: Gets or sets the queryable customer id.
@@ -2700,12 +2688,6 @@ paths:
2700
2688
  summary: Returns the number of results in the database given the provided search params.
2701
2689
  operationId: Count
2702
2690
  parameters:
2703
- - name: VenueId
2704
- in: query
2705
- description: Gets or sets the queryable venue id.
2706
- schema:
2707
- type: string
2708
- format: uuid
2709
2691
  - name: CustomerId
2710
2692
  in: query
2711
2693
  description: Gets or sets the queryable customer id.
@@ -2846,12 +2828,6 @@ paths:
2846
2828
  summary: Gets a list of resources unpaged and without references.
2847
2829
  operationId: GetListWithoutReferences
2848
2830
  parameters:
2849
- - name: VenueId
2850
- in: query
2851
- description: Gets or sets the queryable venue id.
2852
- schema:
2853
- type: string
2854
- format: uuid
2855
2831
  - name: CustomerId
2856
2832
  in: query
2857
2833
  description: Gets or sets the queryable customer id.
@@ -2995,12 +2971,6 @@ paths:
2995
2971
  summary: Gets a list of resources.
2996
2972
  operationId: GetListIdName
2997
2973
  parameters:
2998
- - name: VenueId
2999
- in: query
3000
- description: Gets or sets the queryable venue id.
3001
- schema:
3002
- type: string
3003
- format: uuid
3004
2974
  - name: CustomerId
3005
2975
  in: query
3006
2976
  description: Gets or sets the queryable customer id.
@@ -14907,6 +14877,71 @@ paths:
14907
14877
  text/json:
14908
14878
  schema:
14909
14879
  $ref: '#/components/schemas/ValidationResultModel'
14880
+ '/api/customers/{customerId}/send-account-invite':
14881
+ patch:
14882
+ tags:
14883
+ - Customers
14884
+ summary: 'Sends an account invite email to the customer with their information, participant details, and wallet balances.'
14885
+ operationId: SendAccountInvite
14886
+ parameters:
14887
+ - name: customerId
14888
+ in: path
14889
+ description: The customer Id.
14890
+ required: true
14891
+ schema:
14892
+ type: string
14893
+ format: uuid
14894
+ requestBody:
14895
+ description: The patch model containing acceptance code and base domain.
14896
+ content:
14897
+ application/json:
14898
+ schema:
14899
+ $ref: '#/components/schemas/CustomerAccountInvitePatch'
14900
+ text/json:
14901
+ schema:
14902
+ $ref: '#/components/schemas/CustomerAccountInvitePatch'
14903
+ application/*+json:
14904
+ schema:
14905
+ $ref: '#/components/schemas/CustomerAccountInvitePatch'
14906
+ responses:
14907
+ '200':
14908
+ description: OK
14909
+ '400':
14910
+ description: Bad Request
14911
+ content:
14912
+ text/plain:
14913
+ schema:
14914
+ $ref: '#/components/schemas/ReachError'
14915
+ application/json:
14916
+ schema:
14917
+ $ref: '#/components/schemas/ReachError'
14918
+ text/json:
14919
+ schema:
14920
+ $ref: '#/components/schemas/ReachError'
14921
+ '500':
14922
+ description: Internal Server Error
14923
+ content:
14924
+ text/plain:
14925
+ schema:
14926
+ $ref: '#/components/schemas/ReachError'
14927
+ application/json:
14928
+ schema:
14929
+ $ref: '#/components/schemas/ReachError'
14930
+ text/json:
14931
+ schema:
14932
+ $ref: '#/components/schemas/ReachError'
14933
+ '422':
14934
+ description: Unprocessable Content
14935
+ content:
14936
+ text/plain:
14937
+ schema:
14938
+ $ref: '#/components/schemas/ValidationResultModel'
14939
+ application/json:
14940
+ schema:
14941
+ $ref: '#/components/schemas/ValidationResultModel'
14942
+ text/json:
14943
+ schema:
14944
+ $ref: '#/components/schemas/ValidationResultModel'
14910
14945
  '/api/customers/{id}/with-stats':
14911
14946
  get:
14912
14947
  tags:
@@ -138932,6 +138967,2801 @@ paths:
138932
138967
  text/json:
138933
138968
  schema:
138934
138969
  $ref: '#/components/schemas/ValidationResultModel'
138970
+ '/api/wallets/by-customer/{customerId}':
138971
+ get:
138972
+ tags:
138973
+ - Wallets
138974
+ summary: Gets a wallet by customer id. Creates the wallet if it doesn't exist.
138975
+ operationId: GetByCustomer
138976
+ parameters:
138977
+ - name: customerId
138978
+ in: path
138979
+ description: The customer id.
138980
+ required: true
138981
+ schema:
138982
+ type: string
138983
+ format: uuid
138984
+ responses:
138985
+ '200':
138986
+ description: OK
138987
+ content:
138988
+ text/plain:
138989
+ schema:
138990
+ $ref: '#/components/schemas/Wallet'
138991
+ application/json:
138992
+ schema:
138993
+ $ref: '#/components/schemas/Wallet'
138994
+ text/json:
138995
+ schema:
138996
+ $ref: '#/components/schemas/Wallet'
138997
+ '400':
138998
+ description: Bad Request
138999
+ content:
139000
+ text/plain:
139001
+ schema:
139002
+ $ref: '#/components/schemas/ReachError'
139003
+ application/json:
139004
+ schema:
139005
+ $ref: '#/components/schemas/ReachError'
139006
+ text/json:
139007
+ schema:
139008
+ $ref: '#/components/schemas/ReachError'
139009
+ '500':
139010
+ description: Internal Server Error
139011
+ content:
139012
+ text/plain:
139013
+ schema:
139014
+ $ref: '#/components/schemas/ReachError'
139015
+ application/json:
139016
+ schema:
139017
+ $ref: '#/components/schemas/ReachError'
139018
+ text/json:
139019
+ schema:
139020
+ $ref: '#/components/schemas/ReachError'
139021
+ '422':
139022
+ description: Unprocessable Content
139023
+ content:
139024
+ text/plain:
139025
+ schema:
139026
+ $ref: '#/components/schemas/ValidationResultModel'
139027
+ application/json:
139028
+ schema:
139029
+ $ref: '#/components/schemas/ValidationResultModel'
139030
+ text/json:
139031
+ schema:
139032
+ $ref: '#/components/schemas/ValidationResultModel'
139033
+ '/api/wallets/by-attendee/{attendeeId}':
139034
+ get:
139035
+ tags:
139036
+ - Wallets
139037
+ summary: Gets a wallet by attendee id. Creates the wallet if it doesn't exist.
139038
+ operationId: GetByAttendee
139039
+ parameters:
139040
+ - name: attendeeId
139041
+ in: path
139042
+ description: The attendee id.
139043
+ required: true
139044
+ schema:
139045
+ type: string
139046
+ format: uuid
139047
+ responses:
139048
+ '200':
139049
+ description: OK
139050
+ content:
139051
+ text/plain:
139052
+ schema:
139053
+ $ref: '#/components/schemas/Wallet'
139054
+ application/json:
139055
+ schema:
139056
+ $ref: '#/components/schemas/Wallet'
139057
+ text/json:
139058
+ schema:
139059
+ $ref: '#/components/schemas/Wallet'
139060
+ '400':
139061
+ description: Bad Request
139062
+ content:
139063
+ text/plain:
139064
+ schema:
139065
+ $ref: '#/components/schemas/ReachError'
139066
+ application/json:
139067
+ schema:
139068
+ $ref: '#/components/schemas/ReachError'
139069
+ text/json:
139070
+ schema:
139071
+ $ref: '#/components/schemas/ReachError'
139072
+ '500':
139073
+ description: Internal Server Error
139074
+ content:
139075
+ text/plain:
139076
+ schema:
139077
+ $ref: '#/components/schemas/ReachError'
139078
+ application/json:
139079
+ schema:
139080
+ $ref: '#/components/schemas/ReachError'
139081
+ text/json:
139082
+ schema:
139083
+ $ref: '#/components/schemas/ReachError'
139084
+ '422':
139085
+ description: Unprocessable Content
139086
+ content:
139087
+ text/plain:
139088
+ schema:
139089
+ $ref: '#/components/schemas/ValidationResultModel'
139090
+ application/json:
139091
+ schema:
139092
+ $ref: '#/components/schemas/ValidationResultModel'
139093
+ text/json:
139094
+ schema:
139095
+ $ref: '#/components/schemas/ValidationResultModel'
139096
+ '/api/wallets/{id}/transactions':
139097
+ get:
139098
+ tags:
139099
+ - Wallets
139100
+ summary: Gets the transaction history for a wallet.
139101
+ operationId: GetTransactions
139102
+ parameters:
139103
+ - name: id
139104
+ in: path
139105
+ description: The wallet id.
139106
+ required: true
139107
+ schema:
139108
+ type: string
139109
+ format: uuid
139110
+ responses:
139111
+ '200':
139112
+ description: OK
139113
+ content:
139114
+ text/plain:
139115
+ schema:
139116
+ type: array
139117
+ items:
139118
+ $ref: '#/components/schemas/WalletTransaction'
139119
+ application/json:
139120
+ schema:
139121
+ type: array
139122
+ items:
139123
+ $ref: '#/components/schemas/WalletTransaction'
139124
+ text/json:
139125
+ schema:
139126
+ type: array
139127
+ items:
139128
+ $ref: '#/components/schemas/WalletTransaction'
139129
+ '400':
139130
+ description: Bad Request
139131
+ content:
139132
+ text/plain:
139133
+ schema:
139134
+ $ref: '#/components/schemas/ReachError'
139135
+ application/json:
139136
+ schema:
139137
+ $ref: '#/components/schemas/ReachError'
139138
+ text/json:
139139
+ schema:
139140
+ $ref: '#/components/schemas/ReachError'
139141
+ '500':
139142
+ description: Internal Server Error
139143
+ content:
139144
+ text/plain:
139145
+ schema:
139146
+ $ref: '#/components/schemas/ReachError'
139147
+ application/json:
139148
+ schema:
139149
+ $ref: '#/components/schemas/ReachError'
139150
+ text/json:
139151
+ schema:
139152
+ $ref: '#/components/schemas/ReachError'
139153
+ '422':
139154
+ description: Unprocessable Content
139155
+ content:
139156
+ text/plain:
139157
+ schema:
139158
+ $ref: '#/components/schemas/ValidationResultModel'
139159
+ application/json:
139160
+ schema:
139161
+ $ref: '#/components/schemas/ValidationResultModel'
139162
+ text/json:
139163
+ schema:
139164
+ $ref: '#/components/schemas/ValidationResultModel'
139165
+ '/api/wallets/{id}/topup':
139166
+ post:
139167
+ tags:
139168
+ - Wallets
139169
+ summary: Tops up a wallet with the specified amount. Requires admin role.
139170
+ operationId: TopUp
139171
+ parameters:
139172
+ - name: id
139173
+ in: path
139174
+ description: The wallet id.
139175
+ required: true
139176
+ schema:
139177
+ type: string
139178
+ format: uuid
139179
+ requestBody:
139180
+ description: The top-up request.
139181
+ content:
139182
+ application/json:
139183
+ schema:
139184
+ $ref: '#/components/schemas/WalletTopUpPost'
139185
+ text/json:
139186
+ schema:
139187
+ $ref: '#/components/schemas/WalletTopUpPost'
139188
+ application/*+json:
139189
+ schema:
139190
+ $ref: '#/components/schemas/WalletTopUpPost'
139191
+ responses:
139192
+ '200':
139193
+ description: OK
139194
+ content:
139195
+ text/plain:
139196
+ schema:
139197
+ $ref: '#/components/schemas/Wallet'
139198
+ application/json:
139199
+ schema:
139200
+ $ref: '#/components/schemas/Wallet'
139201
+ text/json:
139202
+ schema:
139203
+ $ref: '#/components/schemas/Wallet'
139204
+ '400':
139205
+ description: Bad Request
139206
+ content:
139207
+ text/plain:
139208
+ schema:
139209
+ $ref: '#/components/schemas/ReachError'
139210
+ application/json:
139211
+ schema:
139212
+ $ref: '#/components/schemas/ReachError'
139213
+ text/json:
139214
+ schema:
139215
+ $ref: '#/components/schemas/ReachError'
139216
+ '500':
139217
+ description: Internal Server Error
139218
+ content:
139219
+ text/plain:
139220
+ schema:
139221
+ $ref: '#/components/schemas/ReachError'
139222
+ application/json:
139223
+ schema:
139224
+ $ref: '#/components/schemas/ReachError'
139225
+ text/json:
139226
+ schema:
139227
+ $ref: '#/components/schemas/ReachError'
139228
+ '422':
139229
+ description: Unprocessable Content
139230
+ content:
139231
+ text/plain:
139232
+ schema:
139233
+ $ref: '#/components/schemas/ValidationResultModel'
139234
+ application/json:
139235
+ schema:
139236
+ $ref: '#/components/schemas/ValidationResultModel'
139237
+ text/json:
139238
+ schema:
139239
+ $ref: '#/components/schemas/ValidationResultModel'
139240
+ '/api/wallets/{id}/remove-credit':
139241
+ post:
139242
+ tags:
139243
+ - Wallets
139244
+ summary: Removes credits from a wallet with the specified amount. Requires admin role.
139245
+ operationId: RemoveCredit
139246
+ parameters:
139247
+ - name: id
139248
+ in: path
139249
+ description: The wallet id.
139250
+ required: true
139251
+ schema:
139252
+ type: string
139253
+ format: uuid
139254
+ requestBody:
139255
+ description: The credit removal request.
139256
+ content:
139257
+ application/json:
139258
+ schema:
139259
+ $ref: '#/components/schemas/WalletRemoveCreditPost'
139260
+ text/json:
139261
+ schema:
139262
+ $ref: '#/components/schemas/WalletRemoveCreditPost'
139263
+ application/*+json:
139264
+ schema:
139265
+ $ref: '#/components/schemas/WalletRemoveCreditPost'
139266
+ responses:
139267
+ '200':
139268
+ description: OK
139269
+ content:
139270
+ text/plain:
139271
+ schema:
139272
+ $ref: '#/components/schemas/Wallet'
139273
+ application/json:
139274
+ schema:
139275
+ $ref: '#/components/schemas/Wallet'
139276
+ text/json:
139277
+ schema:
139278
+ $ref: '#/components/schemas/Wallet'
139279
+ '400':
139280
+ description: Bad Request
139281
+ content:
139282
+ text/plain:
139283
+ schema:
139284
+ $ref: '#/components/schemas/ReachError'
139285
+ application/json:
139286
+ schema:
139287
+ $ref: '#/components/schemas/ReachError'
139288
+ text/json:
139289
+ schema:
139290
+ $ref: '#/components/schemas/ReachError'
139291
+ '500':
139292
+ description: Internal Server Error
139293
+ content:
139294
+ text/plain:
139295
+ schema:
139296
+ $ref: '#/components/schemas/ReachError'
139297
+ application/json:
139298
+ schema:
139299
+ $ref: '#/components/schemas/ReachError'
139300
+ text/json:
139301
+ schema:
139302
+ $ref: '#/components/schemas/ReachError'
139303
+ '422':
139304
+ description: Unprocessable Content
139305
+ content:
139306
+ text/plain:
139307
+ schema:
139308
+ $ref: '#/components/schemas/ValidationResultModel'
139309
+ application/json:
139310
+ schema:
139311
+ $ref: '#/components/schemas/ValidationResultModel'
139312
+ text/json:
139313
+ schema:
139314
+ $ref: '#/components/schemas/ValidationResultModel'
139315
+ '/api/wallets/{id}/balance':
139316
+ get:
139317
+ tags:
139318
+ - Wallets
139319
+ summary: Gets the current balance of a wallet.
139320
+ operationId: GetBalance
139321
+ parameters:
139322
+ - name: id
139323
+ in: path
139324
+ description: The wallet id.
139325
+ required: true
139326
+ schema:
139327
+ type: string
139328
+ format: uuid
139329
+ responses:
139330
+ '200':
139331
+ description: OK
139332
+ content:
139333
+ text/plain:
139334
+ schema:
139335
+ type: number
139336
+ format: double
139337
+ application/json:
139338
+ schema:
139339
+ type: number
139340
+ format: double
139341
+ text/json:
139342
+ schema:
139343
+ type: number
139344
+ format: double
139345
+ '400':
139346
+ description: Bad Request
139347
+ content:
139348
+ text/plain:
139349
+ schema:
139350
+ $ref: '#/components/schemas/ReachError'
139351
+ application/json:
139352
+ schema:
139353
+ $ref: '#/components/schemas/ReachError'
139354
+ text/json:
139355
+ schema:
139356
+ $ref: '#/components/schemas/ReachError'
139357
+ '500':
139358
+ description: Internal Server Error
139359
+ content:
139360
+ text/plain:
139361
+ schema:
139362
+ $ref: '#/components/schemas/ReachError'
139363
+ application/json:
139364
+ schema:
139365
+ $ref: '#/components/schemas/ReachError'
139366
+ text/json:
139367
+ schema:
139368
+ $ref: '#/components/schemas/ReachError'
139369
+ '422':
139370
+ description: Unprocessable Content
139371
+ content:
139372
+ text/plain:
139373
+ schema:
139374
+ $ref: '#/components/schemas/ValidationResultModel'
139375
+ application/json:
139376
+ schema:
139377
+ $ref: '#/components/schemas/ValidationResultModel'
139378
+ text/json:
139379
+ schema:
139380
+ $ref: '#/components/schemas/ValidationResultModel'
139381
+ /api/wallets/v2-temporary-route:
139382
+ post:
139383
+ tags:
139384
+ - Wallets
139385
+ summary: Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
139386
+ operationId: Post
139387
+ requestBody:
139388
+ description: The <typeparamref name="TObject" /> model.
139389
+ content:
139390
+ application/json:
139391
+ schema:
139392
+ $ref: '#/components/schemas/WalletPost'
139393
+ text/json:
139394
+ schema:
139395
+ $ref: '#/components/schemas/WalletPost'
139396
+ application/*+json:
139397
+ schema:
139398
+ $ref: '#/components/schemas/WalletPost'
139399
+ responses:
139400
+ '200':
139401
+ description: OK
139402
+ content:
139403
+ text/plain:
139404
+ schema:
139405
+ $ref: '#/components/schemas/Wallet'
139406
+ application/json:
139407
+ schema:
139408
+ $ref: '#/components/schemas/Wallet'
139409
+ text/json:
139410
+ schema:
139411
+ $ref: '#/components/schemas/Wallet'
139412
+ '400':
139413
+ description: Bad Request
139414
+ content:
139415
+ text/plain:
139416
+ schema:
139417
+ $ref: '#/components/schemas/ReachError'
139418
+ application/json:
139419
+ schema:
139420
+ $ref: '#/components/schemas/ReachError'
139421
+ text/json:
139422
+ schema:
139423
+ $ref: '#/components/schemas/ReachError'
139424
+ '500':
139425
+ description: Internal Server Error
139426
+ content:
139427
+ text/plain:
139428
+ schema:
139429
+ $ref: '#/components/schemas/ReachError'
139430
+ application/json:
139431
+ schema:
139432
+ $ref: '#/components/schemas/ReachError'
139433
+ text/json:
139434
+ schema:
139435
+ $ref: '#/components/schemas/ReachError'
139436
+ '422':
139437
+ description: Unprocessable Content
139438
+ content:
139439
+ text/plain:
139440
+ schema:
139441
+ $ref: '#/components/schemas/ValidationResultModel'
139442
+ application/json:
139443
+ schema:
139444
+ $ref: '#/components/schemas/ValidationResultModel'
139445
+ text/json:
139446
+ schema:
139447
+ $ref: '#/components/schemas/ValidationResultModel'
139448
+ patch:
139449
+ tags:
139450
+ - Wallets
139451
+ summary: Patches the resource.
139452
+ operationId: Patch
139453
+ requestBody:
139454
+ description: The <typeparamref name="TObject" /> model.
139455
+ content:
139456
+ application/json:
139457
+ schema:
139458
+ $ref: '#/components/schemas/WalletPatch'
139459
+ text/json:
139460
+ schema:
139461
+ $ref: '#/components/schemas/WalletPatch'
139462
+ application/*+json:
139463
+ schema:
139464
+ $ref: '#/components/schemas/WalletPatch'
139465
+ responses:
139466
+ '200':
139467
+ description: OK
139468
+ content:
139469
+ text/plain:
139470
+ schema:
139471
+ $ref: '#/components/schemas/Wallet'
139472
+ application/json:
139473
+ schema:
139474
+ $ref: '#/components/schemas/Wallet'
139475
+ text/json:
139476
+ schema:
139477
+ $ref: '#/components/schemas/Wallet'
139478
+ '400':
139479
+ description: Bad Request
139480
+ content:
139481
+ text/plain:
139482
+ schema:
139483
+ $ref: '#/components/schemas/ReachError'
139484
+ application/json:
139485
+ schema:
139486
+ $ref: '#/components/schemas/ReachError'
139487
+ text/json:
139488
+ schema:
139489
+ $ref: '#/components/schemas/ReachError'
139490
+ '500':
139491
+ description: Internal Server Error
139492
+ content:
139493
+ text/plain:
139494
+ schema:
139495
+ $ref: '#/components/schemas/ReachError'
139496
+ application/json:
139497
+ schema:
139498
+ $ref: '#/components/schemas/ReachError'
139499
+ text/json:
139500
+ schema:
139501
+ $ref: '#/components/schemas/ReachError'
139502
+ '422':
139503
+ description: Unprocessable Content
139504
+ content:
139505
+ text/plain:
139506
+ schema:
139507
+ $ref: '#/components/schemas/ValidationResultModel'
139508
+ application/json:
139509
+ schema:
139510
+ $ref: '#/components/schemas/ValidationResultModel'
139511
+ text/json:
139512
+ schema:
139513
+ $ref: '#/components/schemas/ValidationResultModel'
139514
+ /api/wallets/v2-temporary-route/list:
139515
+ post:
139516
+ tags:
139517
+ - Wallets
139518
+ summary: Inserts a list of resources.
139519
+ operationId: PostList
139520
+ requestBody:
139521
+ description: The list of <typeparamref name="TObject" />.
139522
+ content:
139523
+ application/json:
139524
+ schema:
139525
+ type: array
139526
+ items:
139527
+ $ref: '#/components/schemas/WalletPost'
139528
+ text/json:
139529
+ schema:
139530
+ type: array
139531
+ items:
139532
+ $ref: '#/components/schemas/WalletPost'
139533
+ application/*+json:
139534
+ schema:
139535
+ type: array
139536
+ items:
139537
+ $ref: '#/components/schemas/WalletPost'
139538
+ responses:
139539
+ '200':
139540
+ description: OK
139541
+ content:
139542
+ text/plain:
139543
+ schema:
139544
+ type: array
139545
+ items:
139546
+ $ref: '#/components/schemas/Wallet'
139547
+ application/json:
139548
+ schema:
139549
+ type: array
139550
+ items:
139551
+ $ref: '#/components/schemas/Wallet'
139552
+ text/json:
139553
+ schema:
139554
+ type: array
139555
+ items:
139556
+ $ref: '#/components/schemas/Wallet'
139557
+ '400':
139558
+ description: Bad Request
139559
+ content:
139560
+ text/plain:
139561
+ schema:
139562
+ $ref: '#/components/schemas/ReachError'
139563
+ application/json:
139564
+ schema:
139565
+ $ref: '#/components/schemas/ReachError'
139566
+ text/json:
139567
+ schema:
139568
+ $ref: '#/components/schemas/ReachError'
139569
+ '500':
139570
+ description: Internal Server Error
139571
+ content:
139572
+ text/plain:
139573
+ schema:
139574
+ $ref: '#/components/schemas/ReachError'
139575
+ application/json:
139576
+ schema:
139577
+ $ref: '#/components/schemas/ReachError'
139578
+ text/json:
139579
+ schema:
139580
+ $ref: '#/components/schemas/ReachError'
139581
+ '422':
139582
+ description: Unprocessable Content
139583
+ content:
139584
+ text/plain:
139585
+ schema:
139586
+ $ref: '#/components/schemas/ValidationResultModel'
139587
+ application/json:
139588
+ schema:
139589
+ $ref: '#/components/schemas/ValidationResultModel'
139590
+ text/json:
139591
+ schema:
139592
+ $ref: '#/components/schemas/ValidationResultModel'
139593
+ /api/wallets/v2-temporary-route/with-references:
139594
+ patch:
139595
+ tags:
139596
+ - Wallets
139597
+ summary: Patches the resource.
139598
+ operationId: PatchWithReferences
139599
+ requestBody:
139600
+ description: The <typeparamref name="TObject" /> model.
139601
+ content:
139602
+ application/json:
139603
+ schema:
139604
+ $ref: '#/components/schemas/WalletPatch'
139605
+ text/json:
139606
+ schema:
139607
+ $ref: '#/components/schemas/WalletPatch'
139608
+ application/*+json:
139609
+ schema:
139610
+ $ref: '#/components/schemas/WalletPatch'
139611
+ responses:
139612
+ '200':
139613
+ description: OK
139614
+ content:
139615
+ text/plain:
139616
+ schema:
139617
+ $ref: '#/components/schemas/Wallet'
139618
+ application/json:
139619
+ schema:
139620
+ $ref: '#/components/schemas/Wallet'
139621
+ text/json:
139622
+ schema:
139623
+ $ref: '#/components/schemas/Wallet'
139624
+ '400':
139625
+ description: Bad Request
139626
+ content:
139627
+ text/plain:
139628
+ schema:
139629
+ $ref: '#/components/schemas/ReachError'
139630
+ application/json:
139631
+ schema:
139632
+ $ref: '#/components/schemas/ReachError'
139633
+ text/json:
139634
+ schema:
139635
+ $ref: '#/components/schemas/ReachError'
139636
+ '500':
139637
+ description: Internal Server Error
139638
+ content:
139639
+ text/plain:
139640
+ schema:
139641
+ $ref: '#/components/schemas/ReachError'
139642
+ application/json:
139643
+ schema:
139644
+ $ref: '#/components/schemas/ReachError'
139645
+ text/json:
139646
+ schema:
139647
+ $ref: '#/components/schemas/ReachError'
139648
+ '422':
139649
+ description: Unprocessable Content
139650
+ content:
139651
+ text/plain:
139652
+ schema:
139653
+ $ref: '#/components/schemas/ValidationResultModel'
139654
+ application/json:
139655
+ schema:
139656
+ $ref: '#/components/schemas/ValidationResultModel'
139657
+ text/json:
139658
+ schema:
139659
+ $ref: '#/components/schemas/ValidationResultModel'
139660
+ /api/wallets:
139661
+ delete:
139662
+ tags:
139663
+ - Wallets
139664
+ summary: Deletes the resource.
139665
+ operationId: DeleteByObject
139666
+ requestBody:
139667
+ description: The <typeparamref name="TObject" /> model.
139668
+ content:
139669
+ application/json:
139670
+ schema:
139671
+ $ref: '#/components/schemas/Wallet'
139672
+ text/json:
139673
+ schema:
139674
+ $ref: '#/components/schemas/Wallet'
139675
+ application/*+json:
139676
+ schema:
139677
+ $ref: '#/components/schemas/Wallet'
139678
+ responses:
139679
+ '200':
139680
+ description: OK
139681
+ '400':
139682
+ description: Bad Request
139683
+ content:
139684
+ text/plain:
139685
+ schema:
139686
+ $ref: '#/components/schemas/ReachError'
139687
+ application/json:
139688
+ schema:
139689
+ $ref: '#/components/schemas/ReachError'
139690
+ text/json:
139691
+ schema:
139692
+ $ref: '#/components/schemas/ReachError'
139693
+ '500':
139694
+ description: Internal Server Error
139695
+ content:
139696
+ text/plain:
139697
+ schema:
139698
+ $ref: '#/components/schemas/ReachError'
139699
+ application/json:
139700
+ schema:
139701
+ $ref: '#/components/schemas/ReachError'
139702
+ text/json:
139703
+ schema:
139704
+ $ref: '#/components/schemas/ReachError'
139705
+ '422':
139706
+ description: Unprocessable Content
139707
+ content:
139708
+ text/plain:
139709
+ schema:
139710
+ $ref: '#/components/schemas/ValidationResultModel'
139711
+ application/json:
139712
+ schema:
139713
+ $ref: '#/components/schemas/ValidationResultModel'
139714
+ text/json:
139715
+ schema:
139716
+ $ref: '#/components/schemas/ValidationResultModel'
139717
+ get:
139718
+ tags:
139719
+ - Wallets
139720
+ summary: Gets a list of resources.
139721
+ operationId: GetPage
139722
+ parameters:
139723
+ - name: CustomerId
139724
+ in: query
139725
+ description: Gets or sets the customer id for use in a query search.
139726
+ schema:
139727
+ type: string
139728
+ format: uuid
139729
+ - name: AttendeeId
139730
+ in: query
139731
+ description: Gets or sets the attendee id for use in a query search.
139732
+ schema:
139733
+ type: string
139734
+ format: uuid
139735
+ - name: PageNumber
139736
+ in: query
139737
+ description: Gets or sets the page number for paged queries.
139738
+ schema:
139739
+ type: integer
139740
+ format: int32
139741
+ - name: Take
139742
+ in: query
139743
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
139744
+ schema:
139745
+ type: integer
139746
+ format: int32
139747
+ - name: Skip
139748
+ in: query
139749
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
139750
+ schema:
139751
+ type: integer
139752
+ format: int32
139753
+ - name: LimitListRequests
139754
+ in: query
139755
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
139756
+ schema:
139757
+ type: boolean
139758
+ - name: TenantId
139759
+ in: query
139760
+ description: Gets or sets the Tenant Id.
139761
+ schema:
139762
+ type: string
139763
+ format: uuid
139764
+ - name: ModifiedById
139765
+ in: query
139766
+ description: Gets or sets the Modifed By Id.
139767
+ schema:
139768
+ type: string
139769
+ format: uuid
139770
+ - name: ModifiedByIds
139771
+ in: query
139772
+ description: Gets or sets the Modifed By Ids.
139773
+ schema:
139774
+ type: array
139775
+ items:
139776
+ type: string
139777
+ format: uuid
139778
+ - name: DateCreatedGTE
139779
+ in: query
139780
+ description: Gets or sets the Date Created greater than equal to.
139781
+ schema:
139782
+ type: string
139783
+ format: date-time
139784
+ - name: DateCreatedLTE
139785
+ in: query
139786
+ description: Gets or sets the Date Created less than equal to.
139787
+ schema:
139788
+ type: string
139789
+ format: date-time
139790
+ - name: IsLive
139791
+ in: query
139792
+ description: Gets or sets the queryable only is live status.
139793
+ schema:
139794
+ type: boolean
139795
+ - name: SortOrderDirection
139796
+ in: query
139797
+ description: Gets or sets the sort order direction.
139798
+ schema:
139799
+ $ref: '#/components/schemas/SearchSortOrderDirection'
139800
+ responses:
139801
+ '200':
139802
+ description: OK
139803
+ content:
139804
+ text/plain:
139805
+ schema:
139806
+ $ref: '#/components/schemas/WalletPage'
139807
+ application/json:
139808
+ schema:
139809
+ $ref: '#/components/schemas/WalletPage'
139810
+ text/json:
139811
+ schema:
139812
+ $ref: '#/components/schemas/WalletPage'
139813
+ '400':
139814
+ description: Bad Request
139815
+ content:
139816
+ text/plain:
139817
+ schema:
139818
+ $ref: '#/components/schemas/ReachError'
139819
+ application/json:
139820
+ schema:
139821
+ $ref: '#/components/schemas/ReachError'
139822
+ text/json:
139823
+ schema:
139824
+ $ref: '#/components/schemas/ReachError'
139825
+ '500':
139826
+ description: Internal Server Error
139827
+ content:
139828
+ text/plain:
139829
+ schema:
139830
+ $ref: '#/components/schemas/ReachError'
139831
+ application/json:
139832
+ schema:
139833
+ $ref: '#/components/schemas/ReachError'
139834
+ text/json:
139835
+ schema:
139836
+ $ref: '#/components/schemas/ReachError'
139837
+ '422':
139838
+ description: Unprocessable Content
139839
+ content:
139840
+ text/plain:
139841
+ schema:
139842
+ $ref: '#/components/schemas/ValidationResultModel'
139843
+ application/json:
139844
+ schema:
139845
+ $ref: '#/components/schemas/ValidationResultModel'
139846
+ text/json:
139847
+ schema:
139848
+ $ref: '#/components/schemas/ValidationResultModel'
139849
+ '/api/wallets/{id}':
139850
+ delete:
139851
+ tags:
139852
+ - Wallets
139853
+ summary: Deletes the resource.
139854
+ operationId: DeleteById
139855
+ parameters:
139856
+ - name: id
139857
+ in: path
139858
+ description: The <typeparamref name="TObject" /> id.
139859
+ required: true
139860
+ schema:
139861
+ type: string
139862
+ format: uuid
139863
+ responses:
139864
+ '200':
139865
+ description: OK
139866
+ '400':
139867
+ description: Bad Request
139868
+ content:
139869
+ text/plain:
139870
+ schema:
139871
+ $ref: '#/components/schemas/ReachError'
139872
+ application/json:
139873
+ schema:
139874
+ $ref: '#/components/schemas/ReachError'
139875
+ text/json:
139876
+ schema:
139877
+ $ref: '#/components/schemas/ReachError'
139878
+ '500':
139879
+ description: Internal Server Error
139880
+ content:
139881
+ text/plain:
139882
+ schema:
139883
+ $ref: '#/components/schemas/ReachError'
139884
+ application/json:
139885
+ schema:
139886
+ $ref: '#/components/schemas/ReachError'
139887
+ text/json:
139888
+ schema:
139889
+ $ref: '#/components/schemas/ReachError'
139890
+ '422':
139891
+ description: Unprocessable Content
139892
+ content:
139893
+ text/plain:
139894
+ schema:
139895
+ $ref: '#/components/schemas/ValidationResultModel'
139896
+ application/json:
139897
+ schema:
139898
+ $ref: '#/components/schemas/ValidationResultModel'
139899
+ text/json:
139900
+ schema:
139901
+ $ref: '#/components/schemas/ValidationResultModel'
139902
+ get:
139903
+ tags:
139904
+ - Wallets
139905
+ summary: Gets the resource by its Id.
139906
+ operationId: GetObject
139907
+ parameters:
139908
+ - name: id
139909
+ in: path
139910
+ description: The <typeparamref name="TObject" /> id.
139911
+ required: true
139912
+ schema:
139913
+ type: string
139914
+ format: uuid
139915
+ responses:
139916
+ '200':
139917
+ description: OK
139918
+ content:
139919
+ text/plain:
139920
+ schema:
139921
+ $ref: '#/components/schemas/Wallet'
139922
+ application/json:
139923
+ schema:
139924
+ $ref: '#/components/schemas/Wallet'
139925
+ text/json:
139926
+ schema:
139927
+ $ref: '#/components/schemas/Wallet'
139928
+ '400':
139929
+ description: Bad Request
139930
+ content:
139931
+ text/plain:
139932
+ schema:
139933
+ $ref: '#/components/schemas/ReachError'
139934
+ application/json:
139935
+ schema:
139936
+ $ref: '#/components/schemas/ReachError'
139937
+ text/json:
139938
+ schema:
139939
+ $ref: '#/components/schemas/ReachError'
139940
+ '500':
139941
+ description: Internal Server Error
139942
+ content:
139943
+ text/plain:
139944
+ schema:
139945
+ $ref: '#/components/schemas/ReachError'
139946
+ application/json:
139947
+ schema:
139948
+ $ref: '#/components/schemas/ReachError'
139949
+ text/json:
139950
+ schema:
139951
+ $ref: '#/components/schemas/ReachError'
139952
+ '422':
139953
+ description: Unprocessable Content
139954
+ content:
139955
+ text/plain:
139956
+ schema:
139957
+ $ref: '#/components/schemas/ValidationResultModel'
139958
+ application/json:
139959
+ schema:
139960
+ $ref: '#/components/schemas/ValidationResultModel'
139961
+ text/json:
139962
+ schema:
139963
+ $ref: '#/components/schemas/ValidationResultModel'
139964
+ '/api/wallets/{id}/deletable':
139965
+ get:
139966
+ tags:
139967
+ - Wallets
139968
+ summary: Returns a value indicating whether the resource is deletable.
139969
+ operationId: CanDelete
139970
+ parameters:
139971
+ - name: id
139972
+ in: path
139973
+ description: The <typeparamref name="TObject" /> id.
139974
+ required: true
139975
+ schema:
139976
+ type: string
139977
+ format: uuid
139978
+ responses:
139979
+ '200':
139980
+ description: OK
139981
+ content:
139982
+ text/plain:
139983
+ schema:
139984
+ type: boolean
139985
+ application/json:
139986
+ schema:
139987
+ type: boolean
139988
+ text/json:
139989
+ schema:
139990
+ type: boolean
139991
+ '400':
139992
+ description: Bad Request
139993
+ content:
139994
+ text/plain:
139995
+ schema:
139996
+ $ref: '#/components/schemas/ReachError'
139997
+ application/json:
139998
+ schema:
139999
+ $ref: '#/components/schemas/ReachError'
140000
+ text/json:
140001
+ schema:
140002
+ $ref: '#/components/schemas/ReachError'
140003
+ '500':
140004
+ description: Internal Server Error
140005
+ content:
140006
+ text/plain:
140007
+ schema:
140008
+ $ref: '#/components/schemas/ReachError'
140009
+ application/json:
140010
+ schema:
140011
+ $ref: '#/components/schemas/ReachError'
140012
+ text/json:
140013
+ schema:
140014
+ $ref: '#/components/schemas/ReachError'
140015
+ '422':
140016
+ description: Unprocessable Content
140017
+ content:
140018
+ text/plain:
140019
+ schema:
140020
+ $ref: '#/components/schemas/ValidationResultModel'
140021
+ application/json:
140022
+ schema:
140023
+ $ref: '#/components/schemas/ValidationResultModel'
140024
+ text/json:
140025
+ schema:
140026
+ $ref: '#/components/schemas/ValidationResultModel'
140027
+ /api/wallets/exists:
140028
+ get:
140029
+ tags:
140030
+ - Wallets
140031
+ summary: Returns a value indicating whether the resource exists in the database given the provided search params.
140032
+ operationId: Exists
140033
+ parameters:
140034
+ - name: CustomerId
140035
+ in: query
140036
+ description: Gets or sets the customer id for use in a query search.
140037
+ schema:
140038
+ type: string
140039
+ format: uuid
140040
+ - name: AttendeeId
140041
+ in: query
140042
+ description: Gets or sets the attendee id for use in a query search.
140043
+ schema:
140044
+ type: string
140045
+ format: uuid
140046
+ - name: PageNumber
140047
+ in: query
140048
+ description: Gets or sets the page number for paged queries.
140049
+ schema:
140050
+ type: integer
140051
+ format: int32
140052
+ - name: Take
140053
+ in: query
140054
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
140055
+ schema:
140056
+ type: integer
140057
+ format: int32
140058
+ - name: Skip
140059
+ in: query
140060
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
140061
+ schema:
140062
+ type: integer
140063
+ format: int32
140064
+ - name: LimitListRequests
140065
+ in: query
140066
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
140067
+ schema:
140068
+ type: boolean
140069
+ - name: TenantId
140070
+ in: query
140071
+ description: Gets or sets the Tenant Id.
140072
+ schema:
140073
+ type: string
140074
+ format: uuid
140075
+ - name: ModifiedById
140076
+ in: query
140077
+ description: Gets or sets the Modifed By Id.
140078
+ schema:
140079
+ type: string
140080
+ format: uuid
140081
+ - name: ModifiedByIds
140082
+ in: query
140083
+ description: Gets or sets the Modifed By Ids.
140084
+ schema:
140085
+ type: array
140086
+ items:
140087
+ type: string
140088
+ format: uuid
140089
+ - name: DateCreatedGTE
140090
+ in: query
140091
+ description: Gets or sets the Date Created greater than equal to.
140092
+ schema:
140093
+ type: string
140094
+ format: date-time
140095
+ - name: DateCreatedLTE
140096
+ in: query
140097
+ description: Gets or sets the Date Created less than equal to.
140098
+ schema:
140099
+ type: string
140100
+ format: date-time
140101
+ - name: IsLive
140102
+ in: query
140103
+ description: Gets or sets the queryable only is live status.
140104
+ schema:
140105
+ type: boolean
140106
+ - name: SortOrderDirection
140107
+ in: query
140108
+ description: Gets or sets the sort order direction.
140109
+ schema:
140110
+ $ref: '#/components/schemas/SearchSortOrderDirection'
140111
+ responses:
140112
+ '200':
140113
+ description: OK
140114
+ content:
140115
+ text/plain:
140116
+ schema:
140117
+ type: boolean
140118
+ application/json:
140119
+ schema:
140120
+ type: boolean
140121
+ text/json:
140122
+ schema:
140123
+ type: boolean
140124
+ '400':
140125
+ description: Bad Request
140126
+ content:
140127
+ text/plain:
140128
+ schema:
140129
+ $ref: '#/components/schemas/ReachError'
140130
+ application/json:
140131
+ schema:
140132
+ $ref: '#/components/schemas/ReachError'
140133
+ text/json:
140134
+ schema:
140135
+ $ref: '#/components/schemas/ReachError'
140136
+ '500':
140137
+ description: Internal Server Error
140138
+ content:
140139
+ text/plain:
140140
+ schema:
140141
+ $ref: '#/components/schemas/ReachError'
140142
+ application/json:
140143
+ schema:
140144
+ $ref: '#/components/schemas/ReachError'
140145
+ text/json:
140146
+ schema:
140147
+ $ref: '#/components/schemas/ReachError'
140148
+ '422':
140149
+ description: Unprocessable Content
140150
+ content:
140151
+ text/plain:
140152
+ schema:
140153
+ $ref: '#/components/schemas/ValidationResultModel'
140154
+ application/json:
140155
+ schema:
140156
+ $ref: '#/components/schemas/ValidationResultModel'
140157
+ text/json:
140158
+ schema:
140159
+ $ref: '#/components/schemas/ValidationResultModel'
140160
+ /api/wallets/count:
140161
+ get:
140162
+ tags:
140163
+ - Wallets
140164
+ summary: Returns the number of results in the database given the provided search params.
140165
+ operationId: Count
140166
+ parameters:
140167
+ - name: CustomerId
140168
+ in: query
140169
+ description: Gets or sets the customer id for use in a query search.
140170
+ schema:
140171
+ type: string
140172
+ format: uuid
140173
+ - name: AttendeeId
140174
+ in: query
140175
+ description: Gets or sets the attendee id for use in a query search.
140176
+ schema:
140177
+ type: string
140178
+ format: uuid
140179
+ - name: PageNumber
140180
+ in: query
140181
+ description: Gets or sets the page number for paged queries.
140182
+ schema:
140183
+ type: integer
140184
+ format: int32
140185
+ - name: Take
140186
+ in: query
140187
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
140188
+ schema:
140189
+ type: integer
140190
+ format: int32
140191
+ - name: Skip
140192
+ in: query
140193
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
140194
+ schema:
140195
+ type: integer
140196
+ format: int32
140197
+ - name: LimitListRequests
140198
+ in: query
140199
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
140200
+ schema:
140201
+ type: boolean
140202
+ - name: TenantId
140203
+ in: query
140204
+ description: Gets or sets the Tenant Id.
140205
+ schema:
140206
+ type: string
140207
+ format: uuid
140208
+ - name: ModifiedById
140209
+ in: query
140210
+ description: Gets or sets the Modifed By Id.
140211
+ schema:
140212
+ type: string
140213
+ format: uuid
140214
+ - name: ModifiedByIds
140215
+ in: query
140216
+ description: Gets or sets the Modifed By Ids.
140217
+ schema:
140218
+ type: array
140219
+ items:
140220
+ type: string
140221
+ format: uuid
140222
+ - name: DateCreatedGTE
140223
+ in: query
140224
+ description: Gets or sets the Date Created greater than equal to.
140225
+ schema:
140226
+ type: string
140227
+ format: date-time
140228
+ - name: DateCreatedLTE
140229
+ in: query
140230
+ description: Gets or sets the Date Created less than equal to.
140231
+ schema:
140232
+ type: string
140233
+ format: date-time
140234
+ - name: IsLive
140235
+ in: query
140236
+ description: Gets or sets the queryable only is live status.
140237
+ schema:
140238
+ type: boolean
140239
+ - name: SortOrderDirection
140240
+ in: query
140241
+ description: Gets or sets the sort order direction.
140242
+ schema:
140243
+ $ref: '#/components/schemas/SearchSortOrderDirection'
140244
+ responses:
140245
+ '200':
140246
+ description: OK
140247
+ content:
140248
+ text/plain:
140249
+ schema:
140250
+ type: integer
140251
+ format: int32
140252
+ application/json:
140253
+ schema:
140254
+ type: integer
140255
+ format: int32
140256
+ text/json:
140257
+ schema:
140258
+ type: integer
140259
+ format: int32
140260
+ '400':
140261
+ description: Bad Request
140262
+ content:
140263
+ text/plain:
140264
+ schema:
140265
+ $ref: '#/components/schemas/ReachError'
140266
+ application/json:
140267
+ schema:
140268
+ $ref: '#/components/schemas/ReachError'
140269
+ text/json:
140270
+ schema:
140271
+ $ref: '#/components/schemas/ReachError'
140272
+ '500':
140273
+ description: Internal Server Error
140274
+ content:
140275
+ text/plain:
140276
+ schema:
140277
+ $ref: '#/components/schemas/ReachError'
140278
+ application/json:
140279
+ schema:
140280
+ $ref: '#/components/schemas/ReachError'
140281
+ text/json:
140282
+ schema:
140283
+ $ref: '#/components/schemas/ReachError'
140284
+ '422':
140285
+ description: Unprocessable Content
140286
+ content:
140287
+ text/plain:
140288
+ schema:
140289
+ $ref: '#/components/schemas/ValidationResultModel'
140290
+ application/json:
140291
+ schema:
140292
+ $ref: '#/components/schemas/ValidationResultModel'
140293
+ text/json:
140294
+ schema:
140295
+ $ref: '#/components/schemas/ValidationResultModel'
140296
+ /api/wallets/without-references:
140297
+ get:
140298
+ tags:
140299
+ - Wallets
140300
+ summary: Gets a list of resources unpaged and without references.
140301
+ operationId: GetListWithoutReferences
140302
+ parameters:
140303
+ - name: CustomerId
140304
+ in: query
140305
+ description: Gets or sets the customer id for use in a query search.
140306
+ schema:
140307
+ type: string
140308
+ format: uuid
140309
+ - name: AttendeeId
140310
+ in: query
140311
+ description: Gets or sets the attendee id for use in a query search.
140312
+ schema:
140313
+ type: string
140314
+ format: uuid
140315
+ - name: PageNumber
140316
+ in: query
140317
+ description: Gets or sets the page number for paged queries.
140318
+ schema:
140319
+ type: integer
140320
+ format: int32
140321
+ - name: Take
140322
+ in: query
140323
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
140324
+ schema:
140325
+ type: integer
140326
+ format: int32
140327
+ - name: Skip
140328
+ in: query
140329
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
140330
+ schema:
140331
+ type: integer
140332
+ format: int32
140333
+ - name: LimitListRequests
140334
+ in: query
140335
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
140336
+ schema:
140337
+ type: boolean
140338
+ - name: TenantId
140339
+ in: query
140340
+ description: Gets or sets the Tenant Id.
140341
+ schema:
140342
+ type: string
140343
+ format: uuid
140344
+ - name: ModifiedById
140345
+ in: query
140346
+ description: Gets or sets the Modifed By Id.
140347
+ schema:
140348
+ type: string
140349
+ format: uuid
140350
+ - name: ModifiedByIds
140351
+ in: query
140352
+ description: Gets or sets the Modifed By Ids.
140353
+ schema:
140354
+ type: array
140355
+ items:
140356
+ type: string
140357
+ format: uuid
140358
+ - name: DateCreatedGTE
140359
+ in: query
140360
+ description: Gets or sets the Date Created greater than equal to.
140361
+ schema:
140362
+ type: string
140363
+ format: date-time
140364
+ - name: DateCreatedLTE
140365
+ in: query
140366
+ description: Gets or sets the Date Created less than equal to.
140367
+ schema:
140368
+ type: string
140369
+ format: date-time
140370
+ - name: IsLive
140371
+ in: query
140372
+ description: Gets or sets the queryable only is live status.
140373
+ schema:
140374
+ type: boolean
140375
+ - name: SortOrderDirection
140376
+ in: query
140377
+ description: Gets or sets the sort order direction.
140378
+ schema:
140379
+ $ref: '#/components/schemas/SearchSortOrderDirection'
140380
+ responses:
140381
+ '200':
140382
+ description: OK
140383
+ content:
140384
+ text/plain:
140385
+ schema:
140386
+ type: array
140387
+ items:
140388
+ $ref: '#/components/schemas/Wallet'
140389
+ application/json:
140390
+ schema:
140391
+ type: array
140392
+ items:
140393
+ $ref: '#/components/schemas/Wallet'
140394
+ text/json:
140395
+ schema:
140396
+ type: array
140397
+ items:
140398
+ $ref: '#/components/schemas/Wallet'
140399
+ '400':
140400
+ description: Bad Request
140401
+ content:
140402
+ text/plain:
140403
+ schema:
140404
+ $ref: '#/components/schemas/ReachError'
140405
+ application/json:
140406
+ schema:
140407
+ $ref: '#/components/schemas/ReachError'
140408
+ text/json:
140409
+ schema:
140410
+ $ref: '#/components/schemas/ReachError'
140411
+ '500':
140412
+ description: Internal Server Error
140413
+ content:
140414
+ text/plain:
140415
+ schema:
140416
+ $ref: '#/components/schemas/ReachError'
140417
+ application/json:
140418
+ schema:
140419
+ $ref: '#/components/schemas/ReachError'
140420
+ text/json:
140421
+ schema:
140422
+ $ref: '#/components/schemas/ReachError'
140423
+ '422':
140424
+ description: Unprocessable Content
140425
+ content:
140426
+ text/plain:
140427
+ schema:
140428
+ $ref: '#/components/schemas/ValidationResultModel'
140429
+ application/json:
140430
+ schema:
140431
+ $ref: '#/components/schemas/ValidationResultModel'
140432
+ text/json:
140433
+ schema:
140434
+ $ref: '#/components/schemas/ValidationResultModel'
140435
+ /api/wallets/id-name:
140436
+ get:
140437
+ tags:
140438
+ - Wallets
140439
+ summary: Gets a list of resources.
140440
+ operationId: GetListIdName
140441
+ parameters:
140442
+ - name: CustomerId
140443
+ in: query
140444
+ description: Gets or sets the customer id for use in a query search.
140445
+ schema:
140446
+ type: string
140447
+ format: uuid
140448
+ - name: AttendeeId
140449
+ in: query
140450
+ description: Gets or sets the attendee id for use in a query search.
140451
+ schema:
140452
+ type: string
140453
+ format: uuid
140454
+ - name: PageNumber
140455
+ in: query
140456
+ description: Gets or sets the page number for paged queries.
140457
+ schema:
140458
+ type: integer
140459
+ format: int32
140460
+ - name: Take
140461
+ in: query
140462
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
140463
+ schema:
140464
+ type: integer
140465
+ format: int32
140466
+ - name: Skip
140467
+ in: query
140468
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
140469
+ schema:
140470
+ type: integer
140471
+ format: int32
140472
+ - name: LimitListRequests
140473
+ in: query
140474
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
140475
+ schema:
140476
+ type: boolean
140477
+ - name: TenantId
140478
+ in: query
140479
+ description: Gets or sets the Tenant Id.
140480
+ schema:
140481
+ type: string
140482
+ format: uuid
140483
+ - name: ModifiedById
140484
+ in: query
140485
+ description: Gets or sets the Modifed By Id.
140486
+ schema:
140487
+ type: string
140488
+ format: uuid
140489
+ - name: ModifiedByIds
140490
+ in: query
140491
+ description: Gets or sets the Modifed By Ids.
140492
+ schema:
140493
+ type: array
140494
+ items:
140495
+ type: string
140496
+ format: uuid
140497
+ - name: DateCreatedGTE
140498
+ in: query
140499
+ description: Gets or sets the Date Created greater than equal to.
140500
+ schema:
140501
+ type: string
140502
+ format: date-time
140503
+ - name: DateCreatedLTE
140504
+ in: query
140505
+ description: Gets or sets the Date Created less than equal to.
140506
+ schema:
140507
+ type: string
140508
+ format: date-time
140509
+ - name: IsLive
140510
+ in: query
140511
+ description: Gets or sets the queryable only is live status.
140512
+ schema:
140513
+ type: boolean
140514
+ - name: SortOrderDirection
140515
+ in: query
140516
+ description: Gets or sets the sort order direction.
140517
+ schema:
140518
+ $ref: '#/components/schemas/SearchSortOrderDirection'
140519
+ responses:
140520
+ '200':
140521
+ description: OK
140522
+ content:
140523
+ text/plain:
140524
+ schema:
140525
+ type: array
140526
+ items:
140527
+ $ref: '#/components/schemas/Wallet'
140528
+ application/json:
140529
+ schema:
140530
+ type: array
140531
+ items:
140532
+ $ref: '#/components/schemas/Wallet'
140533
+ text/json:
140534
+ schema:
140535
+ type: array
140536
+ items:
140537
+ $ref: '#/components/schemas/Wallet'
140538
+ '400':
140539
+ description: Bad Request
140540
+ content:
140541
+ text/plain:
140542
+ schema:
140543
+ $ref: '#/components/schemas/ReachError'
140544
+ application/json:
140545
+ schema:
140546
+ $ref: '#/components/schemas/ReachError'
140547
+ text/json:
140548
+ schema:
140549
+ $ref: '#/components/schemas/ReachError'
140550
+ '500':
140551
+ description: Internal Server Error
140552
+ content:
140553
+ text/plain:
140554
+ schema:
140555
+ $ref: '#/components/schemas/ReachError'
140556
+ application/json:
140557
+ schema:
140558
+ $ref: '#/components/schemas/ReachError'
140559
+ text/json:
140560
+ schema:
140561
+ $ref: '#/components/schemas/ReachError'
140562
+ '422':
140563
+ description: Unprocessable Content
140564
+ content:
140565
+ text/plain:
140566
+ schema:
140567
+ $ref: '#/components/schemas/ValidationResultModel'
140568
+ application/json:
140569
+ schema:
140570
+ $ref: '#/components/schemas/ValidationResultModel'
140571
+ text/json:
140572
+ schema:
140573
+ $ref: '#/components/schemas/ValidationResultModel'
140574
+ '/api/wallet-transactions/by-wallet/{walletId}':
140575
+ get:
140576
+ tags:
140577
+ - WalletTransactions
140578
+ summary: Gets wallet transactions by wallet id.
140579
+ operationId: GetByWallet
140580
+ parameters:
140581
+ - name: walletId
140582
+ in: path
140583
+ description: The wallet id.
140584
+ required: true
140585
+ schema:
140586
+ type: string
140587
+ format: uuid
140588
+ responses:
140589
+ '200':
140590
+ description: OK
140591
+ '400':
140592
+ description: Bad Request
140593
+ content:
140594
+ text/plain:
140595
+ schema:
140596
+ $ref: '#/components/schemas/ReachError'
140597
+ application/json:
140598
+ schema:
140599
+ $ref: '#/components/schemas/ReachError'
140600
+ text/json:
140601
+ schema:
140602
+ $ref: '#/components/schemas/ReachError'
140603
+ '500':
140604
+ description: Internal Server Error
140605
+ content:
140606
+ text/plain:
140607
+ schema:
140608
+ $ref: '#/components/schemas/ReachError'
140609
+ application/json:
140610
+ schema:
140611
+ $ref: '#/components/schemas/ReachError'
140612
+ text/json:
140613
+ schema:
140614
+ $ref: '#/components/schemas/ReachError'
140615
+ '422':
140616
+ description: Unprocessable Content
140617
+ content:
140618
+ text/plain:
140619
+ schema:
140620
+ $ref: '#/components/schemas/ValidationResultModel'
140621
+ application/json:
140622
+ schema:
140623
+ $ref: '#/components/schemas/ValidationResultModel'
140624
+ text/json:
140625
+ schema:
140626
+ $ref: '#/components/schemas/ValidationResultModel'
140627
+ '/api/wallet-transactions/by-order/{orderId}':
140628
+ get:
140629
+ tags:
140630
+ - WalletTransactions
140631
+ summary: Gets wallet transactions by order id.
140632
+ operationId: GetByOrder
140633
+ parameters:
140634
+ - name: orderId
140635
+ in: path
140636
+ description: The order id.
140637
+ required: true
140638
+ schema:
140639
+ type: string
140640
+ format: uuid
140641
+ responses:
140642
+ '200':
140643
+ description: OK
140644
+ '400':
140645
+ description: Bad Request
140646
+ content:
140647
+ text/plain:
140648
+ schema:
140649
+ $ref: '#/components/schemas/ReachError'
140650
+ application/json:
140651
+ schema:
140652
+ $ref: '#/components/schemas/ReachError'
140653
+ text/json:
140654
+ schema:
140655
+ $ref: '#/components/schemas/ReachError'
140656
+ '500':
140657
+ description: Internal Server Error
140658
+ content:
140659
+ text/plain:
140660
+ schema:
140661
+ $ref: '#/components/schemas/ReachError'
140662
+ application/json:
140663
+ schema:
140664
+ $ref: '#/components/schemas/ReachError'
140665
+ text/json:
140666
+ schema:
140667
+ $ref: '#/components/schemas/ReachError'
140668
+ '422':
140669
+ description: Unprocessable Content
140670
+ content:
140671
+ text/plain:
140672
+ schema:
140673
+ $ref: '#/components/schemas/ValidationResultModel'
140674
+ application/json:
140675
+ schema:
140676
+ $ref: '#/components/schemas/ValidationResultModel'
140677
+ text/json:
140678
+ schema:
140679
+ $ref: '#/components/schemas/ValidationResultModel'
140680
+ /api/wallet-transactions/v2-temporary-route/list:
140681
+ post:
140682
+ tags:
140683
+ - WalletTransactions
140684
+ summary: Inserts a list of resources.
140685
+ operationId: PostList
140686
+ requestBody:
140687
+ description: The list of <typeparamref name="TObject" />.
140688
+ content:
140689
+ application/json:
140690
+ schema:
140691
+ type: array
140692
+ items:
140693
+ $ref: '#/components/schemas/WalletTransactionPost'
140694
+ text/json:
140695
+ schema:
140696
+ type: array
140697
+ items:
140698
+ $ref: '#/components/schemas/WalletTransactionPost'
140699
+ application/*+json:
140700
+ schema:
140701
+ type: array
140702
+ items:
140703
+ $ref: '#/components/schemas/WalletTransactionPost'
140704
+ responses:
140705
+ '200':
140706
+ description: OK
140707
+ content:
140708
+ text/plain:
140709
+ schema:
140710
+ type: array
140711
+ items:
140712
+ $ref: '#/components/schemas/WalletTransaction'
140713
+ application/json:
140714
+ schema:
140715
+ type: array
140716
+ items:
140717
+ $ref: '#/components/schemas/WalletTransaction'
140718
+ text/json:
140719
+ schema:
140720
+ type: array
140721
+ items:
140722
+ $ref: '#/components/schemas/WalletTransaction'
140723
+ '400':
140724
+ description: Bad Request
140725
+ content:
140726
+ text/plain:
140727
+ schema:
140728
+ $ref: '#/components/schemas/ReachError'
140729
+ application/json:
140730
+ schema:
140731
+ $ref: '#/components/schemas/ReachError'
140732
+ text/json:
140733
+ schema:
140734
+ $ref: '#/components/schemas/ReachError'
140735
+ '500':
140736
+ description: Internal Server Error
140737
+ content:
140738
+ text/plain:
140739
+ schema:
140740
+ $ref: '#/components/schemas/ReachError'
140741
+ application/json:
140742
+ schema:
140743
+ $ref: '#/components/schemas/ReachError'
140744
+ text/json:
140745
+ schema:
140746
+ $ref: '#/components/schemas/ReachError'
140747
+ '422':
140748
+ description: Unprocessable Content
140749
+ content:
140750
+ text/plain:
140751
+ schema:
140752
+ $ref: '#/components/schemas/ValidationResultModel'
140753
+ application/json:
140754
+ schema:
140755
+ $ref: '#/components/schemas/ValidationResultModel'
140756
+ text/json:
140757
+ schema:
140758
+ $ref: '#/components/schemas/ValidationResultModel'
140759
+ /api/wallet-transactions/v2-temporary-route/with-references:
140760
+ patch:
140761
+ tags:
140762
+ - WalletTransactions
140763
+ summary: Patches the resource.
140764
+ operationId: PatchWithReferences
140765
+ requestBody:
140766
+ description: The <typeparamref name="TObject" /> model.
140767
+ content:
140768
+ application/json:
140769
+ schema:
140770
+ $ref: '#/components/schemas/WalletTransactionPatch'
140771
+ text/json:
140772
+ schema:
140773
+ $ref: '#/components/schemas/WalletTransactionPatch'
140774
+ application/*+json:
140775
+ schema:
140776
+ $ref: '#/components/schemas/WalletTransactionPatch'
140777
+ responses:
140778
+ '200':
140779
+ description: OK
140780
+ content:
140781
+ text/plain:
140782
+ schema:
140783
+ $ref: '#/components/schemas/WalletTransaction'
140784
+ application/json:
140785
+ schema:
140786
+ $ref: '#/components/schemas/WalletTransaction'
140787
+ text/json:
140788
+ schema:
140789
+ $ref: '#/components/schemas/WalletTransaction'
140790
+ '400':
140791
+ description: Bad Request
140792
+ content:
140793
+ text/plain:
140794
+ schema:
140795
+ $ref: '#/components/schemas/ReachError'
140796
+ application/json:
140797
+ schema:
140798
+ $ref: '#/components/schemas/ReachError'
140799
+ text/json:
140800
+ schema:
140801
+ $ref: '#/components/schemas/ReachError'
140802
+ '500':
140803
+ description: Internal Server Error
140804
+ content:
140805
+ text/plain:
140806
+ schema:
140807
+ $ref: '#/components/schemas/ReachError'
140808
+ application/json:
140809
+ schema:
140810
+ $ref: '#/components/schemas/ReachError'
140811
+ text/json:
140812
+ schema:
140813
+ $ref: '#/components/schemas/ReachError'
140814
+ '422':
140815
+ description: Unprocessable Content
140816
+ content:
140817
+ text/plain:
140818
+ schema:
140819
+ $ref: '#/components/schemas/ValidationResultModel'
140820
+ application/json:
140821
+ schema:
140822
+ $ref: '#/components/schemas/ValidationResultModel'
140823
+ text/json:
140824
+ schema:
140825
+ $ref: '#/components/schemas/ValidationResultModel'
140826
+ /api/wallet-transactions:
140827
+ delete:
140828
+ tags:
140829
+ - WalletTransactions
140830
+ summary: Deletes the resource.
140831
+ operationId: DeleteByObject
140832
+ requestBody:
140833
+ description: The <typeparamref name="TObject" /> model.
140834
+ content:
140835
+ application/json:
140836
+ schema:
140837
+ $ref: '#/components/schemas/WalletTransaction'
140838
+ text/json:
140839
+ schema:
140840
+ $ref: '#/components/schemas/WalletTransaction'
140841
+ application/*+json:
140842
+ schema:
140843
+ $ref: '#/components/schemas/WalletTransaction'
140844
+ responses:
140845
+ '200':
140846
+ description: OK
140847
+ '400':
140848
+ description: Bad Request
140849
+ content:
140850
+ text/plain:
140851
+ schema:
140852
+ $ref: '#/components/schemas/ReachError'
140853
+ application/json:
140854
+ schema:
140855
+ $ref: '#/components/schemas/ReachError'
140856
+ text/json:
140857
+ schema:
140858
+ $ref: '#/components/schemas/ReachError'
140859
+ '500':
140860
+ description: Internal Server Error
140861
+ content:
140862
+ text/plain:
140863
+ schema:
140864
+ $ref: '#/components/schemas/ReachError'
140865
+ application/json:
140866
+ schema:
140867
+ $ref: '#/components/schemas/ReachError'
140868
+ text/json:
140869
+ schema:
140870
+ $ref: '#/components/schemas/ReachError'
140871
+ '422':
140872
+ description: Unprocessable Content
140873
+ content:
140874
+ text/plain:
140875
+ schema:
140876
+ $ref: '#/components/schemas/ValidationResultModel'
140877
+ application/json:
140878
+ schema:
140879
+ $ref: '#/components/schemas/ValidationResultModel'
140880
+ text/json:
140881
+ schema:
140882
+ $ref: '#/components/schemas/ValidationResultModel'
140883
+ get:
140884
+ tags:
140885
+ - WalletTransactions
140886
+ summary: Gets a list of resources.
140887
+ operationId: GetPage
140888
+ parameters:
140889
+ - name: WalletId
140890
+ in: query
140891
+ description: Gets or sets the wallet id for use in a query search.
140892
+ schema:
140893
+ type: string
140894
+ format: uuid
140895
+ - name: OrderId
140896
+ in: query
140897
+ description: Gets or sets the order id for use in a query search.
140898
+ schema:
140899
+ type: string
140900
+ format: uuid
140901
+ - name: TransactionType
140902
+ in: query
140903
+ description: Gets or sets the transaction type for use in a query search.
140904
+ schema:
140905
+ $ref: '#/components/schemas/WalletTransactionType'
140906
+ - name: PageNumber
140907
+ in: query
140908
+ description: Gets or sets the page number for paged queries.
140909
+ schema:
140910
+ type: integer
140911
+ format: int32
140912
+ - name: Take
140913
+ in: query
140914
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
140915
+ schema:
140916
+ type: integer
140917
+ format: int32
140918
+ - name: Skip
140919
+ in: query
140920
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
140921
+ schema:
140922
+ type: integer
140923
+ format: int32
140924
+ - name: LimitListRequests
140925
+ in: query
140926
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
140927
+ schema:
140928
+ type: boolean
140929
+ - name: TenantId
140930
+ in: query
140931
+ description: Gets or sets the Tenant Id.
140932
+ schema:
140933
+ type: string
140934
+ format: uuid
140935
+ - name: ModifiedById
140936
+ in: query
140937
+ description: Gets or sets the Modifed By Id.
140938
+ schema:
140939
+ type: string
140940
+ format: uuid
140941
+ - name: ModifiedByIds
140942
+ in: query
140943
+ description: Gets or sets the Modifed By Ids.
140944
+ schema:
140945
+ type: array
140946
+ items:
140947
+ type: string
140948
+ format: uuid
140949
+ - name: DateCreatedGTE
140950
+ in: query
140951
+ description: Gets or sets the Date Created greater than equal to.
140952
+ schema:
140953
+ type: string
140954
+ format: date-time
140955
+ - name: DateCreatedLTE
140956
+ in: query
140957
+ description: Gets or sets the Date Created less than equal to.
140958
+ schema:
140959
+ type: string
140960
+ format: date-time
140961
+ - name: IsLive
140962
+ in: query
140963
+ description: Gets or sets the queryable only is live status.
140964
+ schema:
140965
+ type: boolean
140966
+ - name: SortOrderDirection
140967
+ in: query
140968
+ description: Gets or sets the sort order direction.
140969
+ schema:
140970
+ $ref: '#/components/schemas/SearchSortOrderDirection'
140971
+ responses:
140972
+ '200':
140973
+ description: OK
140974
+ content:
140975
+ text/plain:
140976
+ schema:
140977
+ $ref: '#/components/schemas/WalletTransactionPage'
140978
+ application/json:
140979
+ schema:
140980
+ $ref: '#/components/schemas/WalletTransactionPage'
140981
+ text/json:
140982
+ schema:
140983
+ $ref: '#/components/schemas/WalletTransactionPage'
140984
+ '400':
140985
+ description: Bad Request
140986
+ content:
140987
+ text/plain:
140988
+ schema:
140989
+ $ref: '#/components/schemas/ReachError'
140990
+ application/json:
140991
+ schema:
140992
+ $ref: '#/components/schemas/ReachError'
140993
+ text/json:
140994
+ schema:
140995
+ $ref: '#/components/schemas/ReachError'
140996
+ '500':
140997
+ description: Internal Server Error
140998
+ content:
140999
+ text/plain:
141000
+ schema:
141001
+ $ref: '#/components/schemas/ReachError'
141002
+ application/json:
141003
+ schema:
141004
+ $ref: '#/components/schemas/ReachError'
141005
+ text/json:
141006
+ schema:
141007
+ $ref: '#/components/schemas/ReachError'
141008
+ '422':
141009
+ description: Unprocessable Content
141010
+ content:
141011
+ text/plain:
141012
+ schema:
141013
+ $ref: '#/components/schemas/ValidationResultModel'
141014
+ application/json:
141015
+ schema:
141016
+ $ref: '#/components/schemas/ValidationResultModel'
141017
+ text/json:
141018
+ schema:
141019
+ $ref: '#/components/schemas/ValidationResultModel'
141020
+ '/api/wallet-transactions/{id}':
141021
+ delete:
141022
+ tags:
141023
+ - WalletTransactions
141024
+ summary: Deletes the resource.
141025
+ operationId: DeleteById
141026
+ parameters:
141027
+ - name: id
141028
+ in: path
141029
+ description: The <typeparamref name="TObject" /> id.
141030
+ required: true
141031
+ schema:
141032
+ type: string
141033
+ format: uuid
141034
+ responses:
141035
+ '200':
141036
+ description: OK
141037
+ '400':
141038
+ description: Bad Request
141039
+ content:
141040
+ text/plain:
141041
+ schema:
141042
+ $ref: '#/components/schemas/ReachError'
141043
+ application/json:
141044
+ schema:
141045
+ $ref: '#/components/schemas/ReachError'
141046
+ text/json:
141047
+ schema:
141048
+ $ref: '#/components/schemas/ReachError'
141049
+ '500':
141050
+ description: Internal Server Error
141051
+ content:
141052
+ text/plain:
141053
+ schema:
141054
+ $ref: '#/components/schemas/ReachError'
141055
+ application/json:
141056
+ schema:
141057
+ $ref: '#/components/schemas/ReachError'
141058
+ text/json:
141059
+ schema:
141060
+ $ref: '#/components/schemas/ReachError'
141061
+ '422':
141062
+ description: Unprocessable Content
141063
+ content:
141064
+ text/plain:
141065
+ schema:
141066
+ $ref: '#/components/schemas/ValidationResultModel'
141067
+ application/json:
141068
+ schema:
141069
+ $ref: '#/components/schemas/ValidationResultModel'
141070
+ text/json:
141071
+ schema:
141072
+ $ref: '#/components/schemas/ValidationResultModel'
141073
+ get:
141074
+ tags:
141075
+ - WalletTransactions
141076
+ summary: Gets the resource by its Id.
141077
+ operationId: GetObject
141078
+ parameters:
141079
+ - name: id
141080
+ in: path
141081
+ description: The <typeparamref name="TObject" /> id.
141082
+ required: true
141083
+ schema:
141084
+ type: string
141085
+ format: uuid
141086
+ responses:
141087
+ '200':
141088
+ description: OK
141089
+ content:
141090
+ text/plain:
141091
+ schema:
141092
+ $ref: '#/components/schemas/WalletTransaction'
141093
+ application/json:
141094
+ schema:
141095
+ $ref: '#/components/schemas/WalletTransaction'
141096
+ text/json:
141097
+ schema:
141098
+ $ref: '#/components/schemas/WalletTransaction'
141099
+ '400':
141100
+ description: Bad Request
141101
+ content:
141102
+ text/plain:
141103
+ schema:
141104
+ $ref: '#/components/schemas/ReachError'
141105
+ application/json:
141106
+ schema:
141107
+ $ref: '#/components/schemas/ReachError'
141108
+ text/json:
141109
+ schema:
141110
+ $ref: '#/components/schemas/ReachError'
141111
+ '500':
141112
+ description: Internal Server Error
141113
+ content:
141114
+ text/plain:
141115
+ schema:
141116
+ $ref: '#/components/schemas/ReachError'
141117
+ application/json:
141118
+ schema:
141119
+ $ref: '#/components/schemas/ReachError'
141120
+ text/json:
141121
+ schema:
141122
+ $ref: '#/components/schemas/ReachError'
141123
+ '422':
141124
+ description: Unprocessable Content
141125
+ content:
141126
+ text/plain:
141127
+ schema:
141128
+ $ref: '#/components/schemas/ValidationResultModel'
141129
+ application/json:
141130
+ schema:
141131
+ $ref: '#/components/schemas/ValidationResultModel'
141132
+ text/json:
141133
+ schema:
141134
+ $ref: '#/components/schemas/ValidationResultModel'
141135
+ '/api/wallet-transactions/{id}/deletable':
141136
+ get:
141137
+ tags:
141138
+ - WalletTransactions
141139
+ summary: Returns a value indicating whether the resource is deletable.
141140
+ operationId: CanDelete
141141
+ parameters:
141142
+ - name: id
141143
+ in: path
141144
+ description: The <typeparamref name="TObject" /> id.
141145
+ required: true
141146
+ schema:
141147
+ type: string
141148
+ format: uuid
141149
+ responses:
141150
+ '200':
141151
+ description: OK
141152
+ content:
141153
+ text/plain:
141154
+ schema:
141155
+ type: boolean
141156
+ application/json:
141157
+ schema:
141158
+ type: boolean
141159
+ text/json:
141160
+ schema:
141161
+ type: boolean
141162
+ '400':
141163
+ description: Bad Request
141164
+ content:
141165
+ text/plain:
141166
+ schema:
141167
+ $ref: '#/components/schemas/ReachError'
141168
+ application/json:
141169
+ schema:
141170
+ $ref: '#/components/schemas/ReachError'
141171
+ text/json:
141172
+ schema:
141173
+ $ref: '#/components/schemas/ReachError'
141174
+ '500':
141175
+ description: Internal Server Error
141176
+ content:
141177
+ text/plain:
141178
+ schema:
141179
+ $ref: '#/components/schemas/ReachError'
141180
+ application/json:
141181
+ schema:
141182
+ $ref: '#/components/schemas/ReachError'
141183
+ text/json:
141184
+ schema:
141185
+ $ref: '#/components/schemas/ReachError'
141186
+ '422':
141187
+ description: Unprocessable Content
141188
+ content:
141189
+ text/plain:
141190
+ schema:
141191
+ $ref: '#/components/schemas/ValidationResultModel'
141192
+ application/json:
141193
+ schema:
141194
+ $ref: '#/components/schemas/ValidationResultModel'
141195
+ text/json:
141196
+ schema:
141197
+ $ref: '#/components/schemas/ValidationResultModel'
141198
+ /api/wallet-transactions/exists:
141199
+ get:
141200
+ tags:
141201
+ - WalletTransactions
141202
+ summary: Returns a value indicating whether the resource exists in the database given the provided search params.
141203
+ operationId: Exists
141204
+ parameters:
141205
+ - name: WalletId
141206
+ in: query
141207
+ description: Gets or sets the wallet id for use in a query search.
141208
+ schema:
141209
+ type: string
141210
+ format: uuid
141211
+ - name: OrderId
141212
+ in: query
141213
+ description: Gets or sets the order id for use in a query search.
141214
+ schema:
141215
+ type: string
141216
+ format: uuid
141217
+ - name: TransactionType
141218
+ in: query
141219
+ description: Gets or sets the transaction type for use in a query search.
141220
+ schema:
141221
+ $ref: '#/components/schemas/WalletTransactionType'
141222
+ - name: PageNumber
141223
+ in: query
141224
+ description: Gets or sets the page number for paged queries.
141225
+ schema:
141226
+ type: integer
141227
+ format: int32
141228
+ - name: Take
141229
+ in: query
141230
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
141231
+ schema:
141232
+ type: integer
141233
+ format: int32
141234
+ - name: Skip
141235
+ in: query
141236
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
141237
+ schema:
141238
+ type: integer
141239
+ format: int32
141240
+ - name: LimitListRequests
141241
+ in: query
141242
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
141243
+ schema:
141244
+ type: boolean
141245
+ - name: TenantId
141246
+ in: query
141247
+ description: Gets or sets the Tenant Id.
141248
+ schema:
141249
+ type: string
141250
+ format: uuid
141251
+ - name: ModifiedById
141252
+ in: query
141253
+ description: Gets or sets the Modifed By Id.
141254
+ schema:
141255
+ type: string
141256
+ format: uuid
141257
+ - name: ModifiedByIds
141258
+ in: query
141259
+ description: Gets or sets the Modifed By Ids.
141260
+ schema:
141261
+ type: array
141262
+ items:
141263
+ type: string
141264
+ format: uuid
141265
+ - name: DateCreatedGTE
141266
+ in: query
141267
+ description: Gets or sets the Date Created greater than equal to.
141268
+ schema:
141269
+ type: string
141270
+ format: date-time
141271
+ - name: DateCreatedLTE
141272
+ in: query
141273
+ description: Gets or sets the Date Created less than equal to.
141274
+ schema:
141275
+ type: string
141276
+ format: date-time
141277
+ - name: IsLive
141278
+ in: query
141279
+ description: Gets or sets the queryable only is live status.
141280
+ schema:
141281
+ type: boolean
141282
+ - name: SortOrderDirection
141283
+ in: query
141284
+ description: Gets or sets the sort order direction.
141285
+ schema:
141286
+ $ref: '#/components/schemas/SearchSortOrderDirection'
141287
+ responses:
141288
+ '200':
141289
+ description: OK
141290
+ content:
141291
+ text/plain:
141292
+ schema:
141293
+ type: boolean
141294
+ application/json:
141295
+ schema:
141296
+ type: boolean
141297
+ text/json:
141298
+ schema:
141299
+ type: boolean
141300
+ '400':
141301
+ description: Bad Request
141302
+ content:
141303
+ text/plain:
141304
+ schema:
141305
+ $ref: '#/components/schemas/ReachError'
141306
+ application/json:
141307
+ schema:
141308
+ $ref: '#/components/schemas/ReachError'
141309
+ text/json:
141310
+ schema:
141311
+ $ref: '#/components/schemas/ReachError'
141312
+ '500':
141313
+ description: Internal Server Error
141314
+ content:
141315
+ text/plain:
141316
+ schema:
141317
+ $ref: '#/components/schemas/ReachError'
141318
+ application/json:
141319
+ schema:
141320
+ $ref: '#/components/schemas/ReachError'
141321
+ text/json:
141322
+ schema:
141323
+ $ref: '#/components/schemas/ReachError'
141324
+ '422':
141325
+ description: Unprocessable Content
141326
+ content:
141327
+ text/plain:
141328
+ schema:
141329
+ $ref: '#/components/schemas/ValidationResultModel'
141330
+ application/json:
141331
+ schema:
141332
+ $ref: '#/components/schemas/ValidationResultModel'
141333
+ text/json:
141334
+ schema:
141335
+ $ref: '#/components/schemas/ValidationResultModel'
141336
+ /api/wallet-transactions/count:
141337
+ get:
141338
+ tags:
141339
+ - WalletTransactions
141340
+ summary: Returns the number of results in the database given the provided search params.
141341
+ operationId: Count
141342
+ parameters:
141343
+ - name: WalletId
141344
+ in: query
141345
+ description: Gets or sets the wallet id for use in a query search.
141346
+ schema:
141347
+ type: string
141348
+ format: uuid
141349
+ - name: OrderId
141350
+ in: query
141351
+ description: Gets or sets the order id for use in a query search.
141352
+ schema:
141353
+ type: string
141354
+ format: uuid
141355
+ - name: TransactionType
141356
+ in: query
141357
+ description: Gets or sets the transaction type for use in a query search.
141358
+ schema:
141359
+ $ref: '#/components/schemas/WalletTransactionType'
141360
+ - name: PageNumber
141361
+ in: query
141362
+ description: Gets or sets the page number for paged queries.
141363
+ schema:
141364
+ type: integer
141365
+ format: int32
141366
+ - name: Take
141367
+ in: query
141368
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
141369
+ schema:
141370
+ type: integer
141371
+ format: int32
141372
+ - name: Skip
141373
+ in: query
141374
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
141375
+ schema:
141376
+ type: integer
141377
+ format: int32
141378
+ - name: LimitListRequests
141379
+ in: query
141380
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
141381
+ schema:
141382
+ type: boolean
141383
+ - name: TenantId
141384
+ in: query
141385
+ description: Gets or sets the Tenant Id.
141386
+ schema:
141387
+ type: string
141388
+ format: uuid
141389
+ - name: ModifiedById
141390
+ in: query
141391
+ description: Gets or sets the Modifed By Id.
141392
+ schema:
141393
+ type: string
141394
+ format: uuid
141395
+ - name: ModifiedByIds
141396
+ in: query
141397
+ description: Gets or sets the Modifed By Ids.
141398
+ schema:
141399
+ type: array
141400
+ items:
141401
+ type: string
141402
+ format: uuid
141403
+ - name: DateCreatedGTE
141404
+ in: query
141405
+ description: Gets or sets the Date Created greater than equal to.
141406
+ schema:
141407
+ type: string
141408
+ format: date-time
141409
+ - name: DateCreatedLTE
141410
+ in: query
141411
+ description: Gets or sets the Date Created less than equal to.
141412
+ schema:
141413
+ type: string
141414
+ format: date-time
141415
+ - name: IsLive
141416
+ in: query
141417
+ description: Gets or sets the queryable only is live status.
141418
+ schema:
141419
+ type: boolean
141420
+ - name: SortOrderDirection
141421
+ in: query
141422
+ description: Gets or sets the sort order direction.
141423
+ schema:
141424
+ $ref: '#/components/schemas/SearchSortOrderDirection'
141425
+ responses:
141426
+ '200':
141427
+ description: OK
141428
+ content:
141429
+ text/plain:
141430
+ schema:
141431
+ type: integer
141432
+ format: int32
141433
+ application/json:
141434
+ schema:
141435
+ type: integer
141436
+ format: int32
141437
+ text/json:
141438
+ schema:
141439
+ type: integer
141440
+ format: int32
141441
+ '400':
141442
+ description: Bad Request
141443
+ content:
141444
+ text/plain:
141445
+ schema:
141446
+ $ref: '#/components/schemas/ReachError'
141447
+ application/json:
141448
+ schema:
141449
+ $ref: '#/components/schemas/ReachError'
141450
+ text/json:
141451
+ schema:
141452
+ $ref: '#/components/schemas/ReachError'
141453
+ '500':
141454
+ description: Internal Server Error
141455
+ content:
141456
+ text/plain:
141457
+ schema:
141458
+ $ref: '#/components/schemas/ReachError'
141459
+ application/json:
141460
+ schema:
141461
+ $ref: '#/components/schemas/ReachError'
141462
+ text/json:
141463
+ schema:
141464
+ $ref: '#/components/schemas/ReachError'
141465
+ '422':
141466
+ description: Unprocessable Content
141467
+ content:
141468
+ text/plain:
141469
+ schema:
141470
+ $ref: '#/components/schemas/ValidationResultModel'
141471
+ application/json:
141472
+ schema:
141473
+ $ref: '#/components/schemas/ValidationResultModel'
141474
+ text/json:
141475
+ schema:
141476
+ $ref: '#/components/schemas/ValidationResultModel'
141477
+ /api/wallet-transactions/without-references:
141478
+ get:
141479
+ tags:
141480
+ - WalletTransactions
141481
+ summary: Gets a list of resources unpaged and without references.
141482
+ operationId: GetListWithoutReferences
141483
+ parameters:
141484
+ - name: WalletId
141485
+ in: query
141486
+ description: Gets or sets the wallet id for use in a query search.
141487
+ schema:
141488
+ type: string
141489
+ format: uuid
141490
+ - name: OrderId
141491
+ in: query
141492
+ description: Gets or sets the order id for use in a query search.
141493
+ schema:
141494
+ type: string
141495
+ format: uuid
141496
+ - name: TransactionType
141497
+ in: query
141498
+ description: Gets or sets the transaction type for use in a query search.
141499
+ schema:
141500
+ $ref: '#/components/schemas/WalletTransactionType'
141501
+ - name: PageNumber
141502
+ in: query
141503
+ description: Gets or sets the page number for paged queries.
141504
+ schema:
141505
+ type: integer
141506
+ format: int32
141507
+ - name: Take
141508
+ in: query
141509
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
141510
+ schema:
141511
+ type: integer
141512
+ format: int32
141513
+ - name: Skip
141514
+ in: query
141515
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
141516
+ schema:
141517
+ type: integer
141518
+ format: int32
141519
+ - name: LimitListRequests
141520
+ in: query
141521
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
141522
+ schema:
141523
+ type: boolean
141524
+ - name: TenantId
141525
+ in: query
141526
+ description: Gets or sets the Tenant Id.
141527
+ schema:
141528
+ type: string
141529
+ format: uuid
141530
+ - name: ModifiedById
141531
+ in: query
141532
+ description: Gets or sets the Modifed By Id.
141533
+ schema:
141534
+ type: string
141535
+ format: uuid
141536
+ - name: ModifiedByIds
141537
+ in: query
141538
+ description: Gets or sets the Modifed By Ids.
141539
+ schema:
141540
+ type: array
141541
+ items:
141542
+ type: string
141543
+ format: uuid
141544
+ - name: DateCreatedGTE
141545
+ in: query
141546
+ description: Gets or sets the Date Created greater than equal to.
141547
+ schema:
141548
+ type: string
141549
+ format: date-time
141550
+ - name: DateCreatedLTE
141551
+ in: query
141552
+ description: Gets or sets the Date Created less than equal to.
141553
+ schema:
141554
+ type: string
141555
+ format: date-time
141556
+ - name: IsLive
141557
+ in: query
141558
+ description: Gets or sets the queryable only is live status.
141559
+ schema:
141560
+ type: boolean
141561
+ - name: SortOrderDirection
141562
+ in: query
141563
+ description: Gets or sets the sort order direction.
141564
+ schema:
141565
+ $ref: '#/components/schemas/SearchSortOrderDirection'
141566
+ responses:
141567
+ '200':
141568
+ description: OK
141569
+ content:
141570
+ text/plain:
141571
+ schema:
141572
+ type: array
141573
+ items:
141574
+ $ref: '#/components/schemas/WalletTransaction'
141575
+ application/json:
141576
+ schema:
141577
+ type: array
141578
+ items:
141579
+ $ref: '#/components/schemas/WalletTransaction'
141580
+ text/json:
141581
+ schema:
141582
+ type: array
141583
+ items:
141584
+ $ref: '#/components/schemas/WalletTransaction'
141585
+ '400':
141586
+ description: Bad Request
141587
+ content:
141588
+ text/plain:
141589
+ schema:
141590
+ $ref: '#/components/schemas/ReachError'
141591
+ application/json:
141592
+ schema:
141593
+ $ref: '#/components/schemas/ReachError'
141594
+ text/json:
141595
+ schema:
141596
+ $ref: '#/components/schemas/ReachError'
141597
+ '500':
141598
+ description: Internal Server Error
141599
+ content:
141600
+ text/plain:
141601
+ schema:
141602
+ $ref: '#/components/schemas/ReachError'
141603
+ application/json:
141604
+ schema:
141605
+ $ref: '#/components/schemas/ReachError'
141606
+ text/json:
141607
+ schema:
141608
+ $ref: '#/components/schemas/ReachError'
141609
+ '422':
141610
+ description: Unprocessable Content
141611
+ content:
141612
+ text/plain:
141613
+ schema:
141614
+ $ref: '#/components/schemas/ValidationResultModel'
141615
+ application/json:
141616
+ schema:
141617
+ $ref: '#/components/schemas/ValidationResultModel'
141618
+ text/json:
141619
+ schema:
141620
+ $ref: '#/components/schemas/ValidationResultModel'
141621
+ /api/wallet-transactions/id-name:
141622
+ get:
141623
+ tags:
141624
+ - WalletTransactions
141625
+ summary: Gets a list of resources.
141626
+ operationId: GetListIdName
141627
+ parameters:
141628
+ - name: WalletId
141629
+ in: query
141630
+ description: Gets or sets the wallet id for use in a query search.
141631
+ schema:
141632
+ type: string
141633
+ format: uuid
141634
+ - name: OrderId
141635
+ in: query
141636
+ description: Gets or sets the order id for use in a query search.
141637
+ schema:
141638
+ type: string
141639
+ format: uuid
141640
+ - name: TransactionType
141641
+ in: query
141642
+ description: Gets or sets the transaction type for use in a query search.
141643
+ schema:
141644
+ $ref: '#/components/schemas/WalletTransactionType'
141645
+ - name: PageNumber
141646
+ in: query
141647
+ description: Gets or sets the page number for paged queries.
141648
+ schema:
141649
+ type: integer
141650
+ format: int32
141651
+ - name: Take
141652
+ in: query
141653
+ description: 'Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.'
141654
+ schema:
141655
+ type: integer
141656
+ format: int32
141657
+ - name: Skip
141658
+ in: query
141659
+ description: 'Gets or sets how much items to skip from begining of db table, when this is set page is always 1.'
141660
+ schema:
141661
+ type: integer
141662
+ format: int32
141663
+ - name: LimitListRequests
141664
+ in: query
141665
+ description: Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
141666
+ schema:
141667
+ type: boolean
141668
+ - name: TenantId
141669
+ in: query
141670
+ description: Gets or sets the Tenant Id.
141671
+ schema:
141672
+ type: string
141673
+ format: uuid
141674
+ - name: ModifiedById
141675
+ in: query
141676
+ description: Gets or sets the Modifed By Id.
141677
+ schema:
141678
+ type: string
141679
+ format: uuid
141680
+ - name: ModifiedByIds
141681
+ in: query
141682
+ description: Gets or sets the Modifed By Ids.
141683
+ schema:
141684
+ type: array
141685
+ items:
141686
+ type: string
141687
+ format: uuid
141688
+ - name: DateCreatedGTE
141689
+ in: query
141690
+ description: Gets or sets the Date Created greater than equal to.
141691
+ schema:
141692
+ type: string
141693
+ format: date-time
141694
+ - name: DateCreatedLTE
141695
+ in: query
141696
+ description: Gets or sets the Date Created less than equal to.
141697
+ schema:
141698
+ type: string
141699
+ format: date-time
141700
+ - name: IsLive
141701
+ in: query
141702
+ description: Gets or sets the queryable only is live status.
141703
+ schema:
141704
+ type: boolean
141705
+ - name: SortOrderDirection
141706
+ in: query
141707
+ description: Gets or sets the sort order direction.
141708
+ schema:
141709
+ $ref: '#/components/schemas/SearchSortOrderDirection'
141710
+ responses:
141711
+ '200':
141712
+ description: OK
141713
+ content:
141714
+ text/plain:
141715
+ schema:
141716
+ type: array
141717
+ items:
141718
+ $ref: '#/components/schemas/WalletTransaction'
141719
+ application/json:
141720
+ schema:
141721
+ type: array
141722
+ items:
141723
+ $ref: '#/components/schemas/WalletTransaction'
141724
+ text/json:
141725
+ schema:
141726
+ type: array
141727
+ items:
141728
+ $ref: '#/components/schemas/WalletTransaction'
141729
+ '400':
141730
+ description: Bad Request
141731
+ content:
141732
+ text/plain:
141733
+ schema:
141734
+ $ref: '#/components/schemas/ReachError'
141735
+ application/json:
141736
+ schema:
141737
+ $ref: '#/components/schemas/ReachError'
141738
+ text/json:
141739
+ schema:
141740
+ $ref: '#/components/schemas/ReachError'
141741
+ '500':
141742
+ description: Internal Server Error
141743
+ content:
141744
+ text/plain:
141745
+ schema:
141746
+ $ref: '#/components/schemas/ReachError'
141747
+ application/json:
141748
+ schema:
141749
+ $ref: '#/components/schemas/ReachError'
141750
+ text/json:
141751
+ schema:
141752
+ $ref: '#/components/schemas/ReachError'
141753
+ '422':
141754
+ description: Unprocessable Content
141755
+ content:
141756
+ text/plain:
141757
+ schema:
141758
+ $ref: '#/components/schemas/ValidationResultModel'
141759
+ application/json:
141760
+ schema:
141761
+ $ref: '#/components/schemas/ValidationResultModel'
141762
+ text/json:
141763
+ schema:
141764
+ $ref: '#/components/schemas/ValidationResultModel'
138935
141765
  components:
138936
141766
  schemas:
138937
141767
  Activity:
@@ -139020,233 +141850,233 @@ components:
139020
141850
  type: boolean
139021
141851
  description: Gets or sets a value indicating whether the record is live and available for use within the application.
139022
141852
  default: false
139023
- activityName:
139024
- type: string
139025
- description: Gets or sets the activity name.
139026
- nullable: true
139027
- venueName:
139028
- type: string
139029
- description: Gets or sets the venue name.
139030
- nullable: true
139031
- streetAddress:
139032
- type: string
139033
- description: Gets or sets the street address.
139034
- nullable: true
139035
- locality:
139036
- type: string
139037
- description: Gets or sets the Locality.
139038
- nullable: true
139039
- region:
139040
- type: string
139041
- description: Gets or sets the Region.
139042
- nullable: true
139043
- postcode:
139044
- type: string
139045
- description: Gets or sets the Postcode.
139046
- nullable: true
139047
- activityType:
139048
- $ref: '#/components/schemas/ActivityType'
139049
- unlimitedCapacity:
139050
- type: boolean
139051
- description: Gets or sets a value indicating whether the performance row has unlimited capacity.
139052
- default: false
139053
- totalCapacity:
139054
- type: integer
139055
- description: Gets or sets the capacity.
139056
- format: int32
139057
- default: 0
139058
- usedCapacity:
139059
- type: integer
139060
- description: Gets or sets the remaining uses.
139061
- format: int32
139062
- default: 0
139063
- unusedCapacity:
139064
- type: integer
139065
- description: Gets or sets the remaining uses.
139066
- format: int32
139067
- default: 0
139068
- utilisation:
139069
- type: number
139070
- description: Gets or sets the utilisation.
139071
- format: double
139072
- totalOrders:
139073
- type: integer
139074
- description: Gets or sets the total orders.
139075
- format: int32
139076
- default: 0
139077
- totalRevenue:
139078
- type: number
139079
- description: Gets or sets the total revenue.
139080
- format: double
139081
- revenuePotential:
139082
- type: number
139083
- description: Gets or sets the revenue potential.
139084
- format: double
139085
- additionalProperties: false
139086
- description: Represents an activity performance row within the Reach application.
139087
- ActivityPerformancePage:
139088
- required:
139089
- - items
139090
- - pagination
139091
- type: object
139092
- properties:
139093
- pagination:
139094
- $ref: '#/components/schemas/Pagination'
139095
- items:
139096
- type: array
139097
- items:
139098
- $ref: '#/components/schemas/ActivityPerformance'
139099
- readOnly: true
139100
- additionalProperties: false
139101
- ActivityPerformancePatch:
139102
- required:
139103
- - id
139104
- - tenantId
139105
- type: object
139106
- properties:
139107
- tenantId:
139108
- type: string
139109
- description: Gets or sets the tenant Id.
139110
- format: uuid
139111
- id:
139112
- type: string
139113
- description: Gets or sets the Id.
139114
- format: uuid
139115
- additionalProperties: false
139116
- description: Post model for Activity Performance updates.
139117
- ActivityPerformancePost:
139118
- required:
139119
- - tenantId
139120
- type: object
139121
- properties:
139122
- tenantId:
139123
- type: string
139124
- description: Gets or sets the tenant Id.
139125
- format: uuid
139126
- additionalProperties: false
139127
- description: Post model for Activity Performance inserts.
139128
- ActivityType:
139129
- enum:
139130
- - Facility
139131
- - Session
139132
- - Course
139133
- type: string
139134
- description: The activity type.
139135
- AddressComponent:
139136
- type: object
139137
- properties:
139138
- long_name:
139139
- type: string
139140
- description: Gets or sets long name.
139141
- nullable: true
139142
- short_name:
139143
- type: string
139144
- description: Gets or sets short name.
139145
- nullable: true
139146
- types:
139147
- type: array
139148
- items:
139149
- type: string
139150
- description: Gets or sets types.
139151
- nullable: true
139152
- additionalProperties: false
139153
- description: PlaceResult.
139154
- AdvanceBooking:
139155
- enum:
139156
- - Required
139157
- - Optional
139158
- - Unavailable
139159
- type: string
139160
- description: Advance booking options.
139161
- Amenity:
139162
- type: object
139163
- properties:
139164
- id:
139165
- type: integer
139166
- description: Gets or sets the activities Id.
139167
- format: int32
139168
- default: 0
139169
- openActiveType:
139170
- type: string
139171
- description: Gets or sets the countries Name.
139172
- nullable: true
139173
- name:
139174
- type: string
139175
- description: Gets or sets the countries Code.
139176
- nullable: true
139177
- type:
139178
- $ref: '#/components/schemas/AmenityType'
139179
- additionalProperties: false
139180
- description: Represents a Country within the Reach application.
139181
- AmenityType:
139182
- enum:
139183
- - General
139184
- - Accessibility
139185
- type: string
139186
- description: Controls the DealType.
139187
- AppUserRole:
139188
- enum:
139189
- - Owner
139190
- - Admin
139191
- - VenueManager
139192
- - AnalyticsViewer
139193
- type: string
139194
- description: Controls the status of team member roles.
139195
- ApplicationRole:
139196
- enum:
139197
- - Owner
139198
- - Admin
139199
- - User
139200
- - System
139201
- - VenueManager
139202
- type: string
139203
- description: Controls the status of team member roles.
139204
- Attendee:
139205
- required:
139206
- - customerId
139207
- - dateCreated
139208
- - dateModified
139209
- - firstName
139210
- - isLive
139211
- - lastName
139212
- - nameAbbreviation
139213
- - tenantId
139214
- - venueId
139215
- type: object
139216
- properties:
139217
- id:
139218
- type: string
139219
- description: Gets or sets the entities Id.
139220
- format: uuid
139221
- tenantId:
139222
- type: string
139223
- description: Gets or sets the tenant Id.
139224
- format: uuid
139225
- dateCreated:
139226
- type: string
139227
- description: Gets or sets the created date of this entity.
139228
- format: date-time
139229
- dateModified:
139230
- type: string
139231
- description: Gets or sets the last modified date of this entity.
139232
- format: date-time
139233
- modifiedById:
139234
- type: string
139235
- description: Gets or sets the modified by Id.
139236
- format: uuid
139237
- nullable: true
139238
- isLive:
139239
- type: boolean
139240
- description: Gets or sets a value indicating whether the record is live and available for use within the application.
139241
- default: false
139242
- venueId:
141853
+ activityName:
139243
141854
  type: string
139244
- description: Gets or sets the venue id.
141855
+ description: Gets or sets the activity name.
141856
+ nullable: true
141857
+ venueName:
141858
+ type: string
141859
+ description: Gets or sets the venue name.
141860
+ nullable: true
141861
+ streetAddress:
141862
+ type: string
141863
+ description: Gets or sets the street address.
141864
+ nullable: true
141865
+ locality:
141866
+ type: string
141867
+ description: Gets or sets the Locality.
141868
+ nullable: true
141869
+ region:
141870
+ type: string
141871
+ description: Gets or sets the Region.
141872
+ nullable: true
141873
+ postcode:
141874
+ type: string
141875
+ description: Gets or sets the Postcode.
141876
+ nullable: true
141877
+ activityType:
141878
+ $ref: '#/components/schemas/ActivityType'
141879
+ unlimitedCapacity:
141880
+ type: boolean
141881
+ description: Gets or sets a value indicating whether the performance row has unlimited capacity.
141882
+ default: false
141883
+ totalCapacity:
141884
+ type: integer
141885
+ description: Gets or sets the capacity.
141886
+ format: int32
141887
+ default: 0
141888
+ usedCapacity:
141889
+ type: integer
141890
+ description: Gets or sets the remaining uses.
141891
+ format: int32
141892
+ default: 0
141893
+ unusedCapacity:
141894
+ type: integer
141895
+ description: Gets or sets the remaining uses.
141896
+ format: int32
141897
+ default: 0
141898
+ utilisation:
141899
+ type: number
141900
+ description: Gets or sets the utilisation.
141901
+ format: double
141902
+ totalOrders:
141903
+ type: integer
141904
+ description: Gets or sets the total orders.
141905
+ format: int32
141906
+ default: 0
141907
+ totalRevenue:
141908
+ type: number
141909
+ description: Gets or sets the total revenue.
141910
+ format: double
141911
+ revenuePotential:
141912
+ type: number
141913
+ description: Gets or sets the revenue potential.
141914
+ format: double
141915
+ additionalProperties: false
141916
+ description: Represents an activity performance row within the Reach application.
141917
+ ActivityPerformancePage:
141918
+ required:
141919
+ - items
141920
+ - pagination
141921
+ type: object
141922
+ properties:
141923
+ pagination:
141924
+ $ref: '#/components/schemas/Pagination'
141925
+ items:
141926
+ type: array
141927
+ items:
141928
+ $ref: '#/components/schemas/ActivityPerformance'
141929
+ readOnly: true
141930
+ additionalProperties: false
141931
+ ActivityPerformancePatch:
141932
+ required:
141933
+ - id
141934
+ - tenantId
141935
+ type: object
141936
+ properties:
141937
+ tenantId:
141938
+ type: string
141939
+ description: Gets or sets the tenant Id.
139245
141940
  format: uuid
141941
+ id:
141942
+ type: string
141943
+ description: Gets or sets the Id.
141944
+ format: uuid
141945
+ additionalProperties: false
141946
+ description: Post model for Activity Performance updates.
141947
+ ActivityPerformancePost:
141948
+ required:
141949
+ - tenantId
141950
+ type: object
141951
+ properties:
141952
+ tenantId:
141953
+ type: string
141954
+ description: Gets or sets the tenant Id.
141955
+ format: uuid
141956
+ additionalProperties: false
141957
+ description: Post model for Activity Performance inserts.
141958
+ ActivityType:
141959
+ enum:
141960
+ - Facility
141961
+ - Session
141962
+ - Course
141963
+ type: string
141964
+ description: The activity type.
141965
+ AddressComponent:
141966
+ type: object
141967
+ properties:
141968
+ long_name:
141969
+ type: string
141970
+ description: Gets or sets long name.
141971
+ nullable: true
141972
+ short_name:
141973
+ type: string
141974
+ description: Gets or sets short name.
141975
+ nullable: true
141976
+ types:
141977
+ type: array
141978
+ items:
141979
+ type: string
141980
+ description: Gets or sets types.
141981
+ nullable: true
141982
+ additionalProperties: false
141983
+ description: PlaceResult.
141984
+ AdvanceBooking:
141985
+ enum:
141986
+ - Required
141987
+ - Optional
141988
+ - Unavailable
141989
+ type: string
141990
+ description: Advance booking options.
141991
+ Amenity:
141992
+ type: object
141993
+ properties:
141994
+ id:
141995
+ type: integer
141996
+ description: Gets or sets the activities Id.
141997
+ format: int32
141998
+ default: 0
141999
+ openActiveType:
142000
+ type: string
142001
+ description: Gets or sets the countries Name.
142002
+ nullable: true
142003
+ name:
142004
+ type: string
142005
+ description: Gets or sets the countries Code.
142006
+ nullable: true
142007
+ type:
142008
+ $ref: '#/components/schemas/AmenityType'
142009
+ additionalProperties: false
142010
+ description: Represents a Country within the Reach application.
142011
+ AmenityType:
142012
+ enum:
142013
+ - General
142014
+ - Accessibility
142015
+ type: string
142016
+ description: Controls the DealType.
142017
+ AppUserRole:
142018
+ enum:
142019
+ - Owner
142020
+ - Admin
142021
+ - VenueManager
142022
+ - AnalyticsViewer
142023
+ type: string
142024
+ description: Controls the status of team member roles.
142025
+ ApplicationRole:
142026
+ enum:
142027
+ - Owner
142028
+ - Admin
142029
+ - User
142030
+ - System
142031
+ - VenueManager
142032
+ type: string
142033
+ description: Controls the status of team member roles.
142034
+ Attendee:
142035
+ required:
142036
+ - customerId
142037
+ - dateCreated
142038
+ - dateModified
142039
+ - firstName
142040
+ - isLive
142041
+ - lastName
142042
+ - nameAbbreviation
142043
+ - tenantId
142044
+ type: object
142045
+ properties:
142046
+ id:
142047
+ type: string
142048
+ description: Gets or sets the entities Id.
142049
+ format: uuid
142050
+ tenantId:
142051
+ type: string
142052
+ description: Gets or sets the tenant Id.
142053
+ format: uuid
142054
+ dateCreated:
142055
+ type: string
142056
+ description: Gets or sets the created date of this entity.
142057
+ format: date-time
142058
+ dateModified:
142059
+ type: string
142060
+ description: Gets or sets the last modified date of this entity.
142061
+ format: date-time
142062
+ modifiedById:
142063
+ type: string
142064
+ description: Gets or sets the modified by Id.
142065
+ format: uuid
142066
+ nullable: true
142067
+ isLive:
142068
+ type: boolean
142069
+ description: Gets or sets a value indicating whether the record is live and available for use within the application.
142070
+ default: false
139246
142071
  customerId:
139247
142072
  type: string
139248
142073
  description: Gets or sets the customer id.
139249
142074
  format: uuid
142075
+ endUserIdentityId:
142076
+ type: string
142077
+ description: Gets or sets the end user identity id.
142078
+ format: uuid
142079
+ nullable: true
139250
142080
  firstName:
139251
142081
  minLength: 1
139252
142082
  type: string
@@ -139265,6 +142095,10 @@ components:
139265
142095
  description: Gets the attendees full name.
139266
142096
  nullable: true
139267
142097
  readOnly: true
142098
+ wallet:
142099
+ $ref: '#/components/schemas/Wallet'
142100
+ endUserIdentity:
142101
+ $ref: '#/components/schemas/EndUserIdentity'
139268
142102
  additionalProperties: false
139269
142103
  description: Represents a Attendee within the Reach application.
139270
142104
  AttendeePage:
@@ -139295,6 +142129,19 @@ components:
139295
142129
  type: string
139296
142130
  description: Gets or sets the Id.
139297
142131
  format: uuid
142132
+ firstName:
142133
+ type: string
142134
+ description: Gets or sets the attendee first name.
142135
+ nullable: true
142136
+ lastName:
142137
+ type: string
142138
+ description: Gets or sets the attendee last name.
142139
+ nullable: true
142140
+ dateOfBirth:
142141
+ type: string
142142
+ description: "Gets or sets the attendee date of birth.\r\nThis updates the linked end_user_identity record, not the attendee directly."
142143
+ format: date-time
142144
+ nullable: true
139298
142145
  additionalProperties: false
139299
142146
  description: Post model for attendee updates.
139300
142147
  AttendeePost:
@@ -139319,10 +142166,63 @@ components:
139319
142166
  description: Gets or sets the attendee last name.
139320
142167
  customerId:
139321
142168
  type: string
139322
- description: Gets or sets the attendee last name.
142169
+ description: Gets or sets the customer id that the attendee belongs to.
139323
142170
  format: uuid
142171
+ initialWalletBalance:
142172
+ type: number
142173
+ description: "Gets or sets the initial wallet balance for the attendee.\r\nThis is only applicable when wallet tracking level is set to Attendee.\r\nWhen wallet tracking level is Attendee, a wallet is always created for the attendee.\r\nIf InitialWalletBalance is provided and greater than 0, the wallet will be topped up with this amount.\r\nIf not provided or set to 0, the wallet will be created with a balance of 0."
142174
+ format: double
142175
+ nullable: true
142176
+ dateOfBirth:
142177
+ type: string
142178
+ description: "Gets or sets the attendee date of birth.\r\nThis is used to resolve or create the linked end_user_identity record for person-level identity tracking."
142179
+ format: date-time
142180
+ nullable: true
139324
142181
  additionalProperties: false
139325
142182
  description: Post model for attendee inserts.
142183
+ AttendeeWalletDeductionPreview:
142184
+ type: object
142185
+ properties:
142186
+ attendeeId:
142187
+ type: string
142188
+ description: Gets or sets the attendee id.
142189
+ format: uuid
142190
+ attendee:
142191
+ $ref: '#/components/schemas/Attendee'
142192
+ firstName:
142193
+ type: string
142194
+ description: Gets or sets the attendee's first name.
142195
+ nullable: true
142196
+ lastName:
142197
+ type: string
142198
+ description: Gets or sets the attendee's last name.
142199
+ nullable: true
142200
+ currentBalance:
142201
+ type: number
142202
+ description: Gets or sets the attendee's current wallet balance.
142203
+ format: double
142204
+ amountToDeduct:
142205
+ type: number
142206
+ description: Gets or sets the amount that will be deducted from the attendee's wallet.
142207
+ format: double
142208
+ balanceAfterDeduction:
142209
+ type: number
142210
+ description: Gets or sets the wallet balance after deduction.
142211
+ format: double
142212
+ paymentAmount:
142213
+ type: number
142214
+ description: Gets or sets the attendee's payment amount (their portion of the order total).
142215
+ format: double
142216
+ isWalletBalanceSufficient:
142217
+ type: boolean
142218
+ description: "Gets or sets a value indicating whether this attendee's wallet balance is sufficient to cover their payment amount.\r\nThis is only relevant when wallet-only payments are enabled."
142219
+ default: false
142220
+ canProcessAttendeeOrder:
142221
+ type: boolean
142222
+ description: "Gets or sets a value indicating whether this attendee's portion of the order can be processed based on wallet-only payment requirements.\r\nReturns false if wallet-only payments are enabled and this attendee's wallet balance is insufficient."
142223
+ default: false
142224
+ additionalProperties: false
142225
+ description: Represents attendee-level wallet deduction preview information.
139326
142226
  AutoCompleteResponseModel:
139327
142227
  type: object
139328
142228
  properties:
@@ -140411,6 +143311,8 @@ components:
140411
143311
  $ref: '#/components/schemas/UpdateOffer'
140412
143312
  description: Gets or sets the course offers.
140413
143313
  nullable: true
143314
+ customFields:
143315
+ $ref: '#/components/schemas/CustomFieldsBulkUpdate'
140414
143316
  additionalProperties: false
140415
143317
  description: Post model for course updates.
140416
143318
  CoursePost:
@@ -140424,6 +143326,8 @@ components:
140424
143326
  format: uuid
140425
143327
  emailSettings:
140426
143328
  $ref: '#/components/schemas/UpdateEmailSettings'
143329
+ customFields:
143330
+ $ref: '#/components/schemas/CustomFieldsBulkUpdate'
140427
143331
  additionalProperties: false
140428
143332
  description: Post model for course inserts.
140429
143333
  CourseSearchSortBy:
@@ -141911,11 +144815,6 @@ components:
141911
144815
  description: Gets or sets the customer provider id.
141912
144816
  format: uuid
141913
144817
  nullable: true
141914
- venueId:
141915
- type: string
141916
- description: Gets or sets the venue id.
141917
- format: uuid
141918
- nullable: true
141919
144818
  type:
141920
144819
  $ref: '#/components/schemas/CustomerType'
141921
144820
  firstName:
@@ -141959,14 +144858,17 @@ components:
141959
144858
  type: string
141960
144859
  description: Gets or sets the customer postcode.
141961
144860
  nullable: true
141962
- addressCountry:
141963
- type: string
141964
- description: Gets or sets the customer locality.
144861
+ countryId:
144862
+ type: integer
144863
+ description: Gets or sets the customer country id.
144864
+ format: int32
141965
144865
  nullable: true
141966
144866
  marketingOptIn:
141967
144867
  type: boolean
141968
144868
  description: Gets or sets a value indicating whether the customer is opted into marketing.
141969
144869
  default: false
144870
+ country:
144871
+ $ref: '#/components/schemas/Country'
141970
144872
  isActiveCustomer:
141971
144873
  type: boolean
141972
144874
  description: 'Gets or sets a value indicating whether the customer is an active customer, that is, they have completed at least 1 order through to the ''Booked'' stage.'
@@ -141989,8 +144891,34 @@ components:
141989
144891
  $ref: '#/components/schemas/Attendee'
141990
144892
  description: Gets or sets the attendees registered by the customer.
141991
144893
  nullable: true
144894
+ wallet:
144895
+ $ref: '#/components/schemas/Wallet'
141992
144896
  additionalProperties: false
141993
144897
  description: Represents an organisation within the Reach application.
144898
+ CustomerAccountInvitePatch:
144899
+ required:
144900
+ - id
144901
+ - tenantId
144902
+ type: object
144903
+ properties:
144904
+ tenantId:
144905
+ type: string
144906
+ description: Gets or sets the tenant Id.
144907
+ format: uuid
144908
+ id:
144909
+ type: string
144910
+ description: Gets or sets the Id.
144911
+ format: uuid
144912
+ acceptanceCode:
144913
+ type: string
144914
+ description: Gets or sets the acceptance code for the account invite.
144915
+ nullable: true
144916
+ baseDomain:
144917
+ type: string
144918
+ description: 'Gets or sets the base domain for the invite link. If not provided, will use configuration value.'
144919
+ nullable: true
144920
+ additionalProperties: false
144921
+ description: Patch model for sending account invite email to the customer.
141994
144922
  CustomerCancellationOption:
141995
144923
  enum:
141996
144924
  - Cancellable
@@ -142084,9 +145012,10 @@ components:
142084
145012
  type: string
142085
145013
  description: Gets or sets the customer postcode.
142086
145014
  nullable: true
142087
- addressCountry:
142088
- type: string
142089
- description: Gets or sets the customer country.
145015
+ countryId:
145016
+ type: integer
145017
+ description: Gets or sets the customer country id.
145018
+ format: int32
142090
145019
  nullable: true
142091
145020
  marketingOptIn:
142092
145021
  type: boolean
@@ -142146,9 +145075,10 @@ components:
142146
145075
  type: string
142147
145076
  description: Gets or sets the customer postcode.
142148
145077
  nullable: true
142149
- addressCountry:
142150
- type: string
142151
- description: Gets or sets the customer country.
145078
+ countryId:
145079
+ type: integer
145080
+ description: Gets or sets the customer country id.
145081
+ format: int32
142152
145082
  nullable: true
142153
145083
  marketingOptIn:
142154
145084
  type: boolean
@@ -142190,6 +145120,35 @@ components:
142190
145120
  - Organisation
142191
145121
  type: string
142192
145122
  description: The customer type.
145123
+ CustomerWalletDeductionPreview:
145124
+ type: object
145125
+ properties:
145126
+ customerId:
145127
+ type: string
145128
+ description: Gets or sets the customer id.
145129
+ format: uuid
145130
+ currentBalance:
145131
+ type: number
145132
+ description: Gets or sets the customer's current wallet balance.
145133
+ format: double
145134
+ amountToDeduct:
145135
+ type: number
145136
+ description: Gets or sets the amount that will be deducted from the customer's wallet.
145137
+ format: double
145138
+ balanceAfterDeduction:
145139
+ type: number
145140
+ description: Gets or sets the wallet balance after deduction.
145141
+ format: double
145142
+ isWalletBalanceSufficient:
145143
+ type: boolean
145144
+ description: "Gets or sets a value indicating whether the customer's wallet balance is sufficient to cover the full order amount.\r\nThis is only relevant when wallet-only payments are enabled."
145145
+ default: false
145146
+ canProcessOrder:
145147
+ type: boolean
145148
+ description: "Gets or sets a value indicating whether the order can be processed based on wallet-only payment requirements.\r\nReturns false if wallet-only payments are enabled and the customer's wallet balance is insufficient."
145149
+ default: false
145150
+ additionalProperties: false
145151
+ description: Represents customer-level wallet deduction preview information.
142193
145152
  DatabaseState:
142194
145153
  required:
142195
145154
  - activitiesExist
@@ -143092,6 +146051,11 @@ components:
143092
146051
  type: string
143093
146052
  description: Gets or sets the last name.
143094
146053
  nullable: true
146054
+ dateOfBirth:
146055
+ type: string
146056
+ description: Gets or sets the date of birth.
146057
+ format: date-time
146058
+ nullable: true
143095
146059
  dateCreated:
143096
146060
  type: string
143097
146061
  description: Gets or sets the date created.
@@ -145591,6 +148555,11 @@ components:
145591
148555
  description: Gets or sets the payment policy transfer fee (used to transfer an amount to the enterprise tenant in enterprise setups).
145592
148556
  format: double
145593
148557
  nullable: true
148558
+ walletAmountUsed:
148559
+ type: number
148560
+ description: Gets or sets the amount deducted from wallet for this order.
148561
+ format: double
148562
+ nullable: true
145594
148563
  currency:
145595
148564
  minLength: 1
145596
148565
  type: string
@@ -145680,6 +148649,8 @@ components:
145680
148649
  type: string
145681
148650
  description: Gets or sets the orders stripe payment intent client secret.
145682
148651
  nullable: true
148652
+ walletDeductionPreview:
148653
+ $ref: '#/components/schemas/WalletDeductionPreview'
145683
148654
  venue:
145684
148655
  $ref: '#/components/schemas/Venue'
145685
148656
  country:
@@ -148292,6 +151263,10 @@ components:
148292
151263
  type: string
148293
151264
  description: Gets or sets the total revenue value.
148294
151265
  nullable: true
151266
+ totalWalletAmountUsed:
151267
+ type: string
151268
+ description: Gets or sets the total wallet amount used value.
151269
+ nullable: true
148295
151270
  totalOrders:
148296
151271
  type: string
148297
151272
  description: Gets or sets the total orders value.
@@ -149931,6 +152906,8 @@ components:
149931
152906
  $ref: '#/components/schemas/UpdateOffer'
149932
152907
  description: Gets or sets the session offers.
149933
152908
  nullable: true
152909
+ customFields:
152910
+ $ref: '#/components/schemas/CustomFieldsBulkUpdate'
149934
152911
  additionalProperties: false
149935
152912
  description: Patch model for session updates.
149936
152913
  SessionPost:
@@ -149944,6 +152921,8 @@ components:
149944
152921
  format: uuid
149945
152922
  emailSettings:
149946
152923
  $ref: '#/components/schemas/UpdateEmailSettings'
152924
+ customFields:
152925
+ $ref: '#/components/schemas/CustomFieldsBulkUpdate'
149947
152926
  additionalProperties: false
149948
152927
  description: Post model for session inserts.
149949
152928
  SessionType:
@@ -151635,6 +154614,11 @@ components:
151635
154614
  type: string
151636
154615
  description: Gets or sets the attendee last name.
151637
154616
  nullable: true
154617
+ dateOfBirth:
154618
+ type: string
154619
+ description: Gets or sets the attendee date of birth.
154620
+ format: date-time
154621
+ nullable: true
151638
154622
  attendeeNumber:
151639
154623
  type: integer
151640
154624
  description: Gets or sets the attendee number.
@@ -153219,6 +156203,12 @@ components:
153219
156203
  type: boolean
153220
156204
  description: Gets or sets a value indicating whether providers are enabled for the tenant (only applicable to enterprise tenants).
153221
156205
  default: false
156206
+ walletTrackingLevel:
156207
+ $ref: '#/components/schemas/WalletTrackingLevel'
156208
+ walletOnlyPayments:
156209
+ type: boolean
156210
+ description: "Gets or sets a value indicating whether customers are only allowed to use wallet transactions (no card payments).\r\nWhen enabled, prices will be displayed as 'credits' rather than currency."
156211
+ default: false
153222
156212
  orderNumber:
153223
156213
  type: string
153224
156214
  description: Gets the next order number in the sequence.
@@ -153527,6 +156517,10 @@ components:
153527
156517
  type: number
153528
156518
  description: Gets or sets the total revenue.
153529
156519
  format: double
156520
+ totalWalletAmountUsed:
156521
+ type: number
156522
+ description: Gets or sets the total wallet amount used.
156523
+ format: double
153530
156524
  additionalProperties: false
153531
156525
  description: Represents an organisation within the Reach application.
153532
156526
  TotalRevenueReportPage:
@@ -155081,6 +158075,8 @@ components:
155081
158075
  $ref: '#/components/schemas/VenueOpeningHourUpdate'
155082
158076
  description: Gets or sets the venue amenities.
155083
158077
  nullable: true
158078
+ customFields:
158079
+ $ref: '#/components/schemas/CustomFieldsBulkUpdate'
155084
158080
  additionalProperties: false
155085
158081
  description: Post model for venue updates.
155086
158082
  VenuePerformance:
@@ -155286,6 +158282,8 @@ components:
155286
158282
  format: int32
155287
158283
  description: Gets or sets the amenity ids.
155288
158284
  nullable: true
158285
+ customFields:
158286
+ $ref: '#/components/schemas/CustomFieldsBulkUpdate'
155289
158287
  additionalProperties: false
155290
158288
  description: Post model for venue inserts.
155291
158289
  VenueType:
@@ -155910,4 +158908,350 @@ components:
155910
158908
  description: Gets or sets the tenant Id.
155911
158909
  format: uuid
155912
158910
  additionalProperties: false
155913
- description: Post model for WaitlistOpportunityReport inserts.
158911
+ description: Post model for WaitlistOpportunityReport inserts.
158912
+ Wallet:
158913
+ required:
158914
+ - balance
158915
+ - dateCreated
158916
+ - dateModified
158917
+ - isLive
158918
+ - tenantId
158919
+ type: object
158920
+ properties:
158921
+ id:
158922
+ type: string
158923
+ description: Gets or sets the entities Id.
158924
+ format: uuid
158925
+ tenantId:
158926
+ type: string
158927
+ description: Gets or sets the tenant Id.
158928
+ format: uuid
158929
+ dateCreated:
158930
+ type: string
158931
+ description: Gets or sets the created date of this entity.
158932
+ format: date-time
158933
+ dateModified:
158934
+ type: string
158935
+ description: Gets or sets the last modified date of this entity.
158936
+ format: date-time
158937
+ modifiedById:
158938
+ type: string
158939
+ description: Gets or sets the modified by Id.
158940
+ format: uuid
158941
+ nullable: true
158942
+ isLive:
158943
+ type: boolean
158944
+ description: Gets or sets a value indicating whether the record is live and available for use within the application.
158945
+ default: false
158946
+ customerId:
158947
+ type: string
158948
+ description: Gets or sets the customer id. This is set when wallet tracking is at customer level.
158949
+ format: uuid
158950
+ nullable: true
158951
+ attendeeId:
158952
+ type: string
158953
+ description: Gets or sets the attendee id. This is set when wallet tracking is at attendee level.
158954
+ format: uuid
158955
+ nullable: true
158956
+ balance:
158957
+ type: number
158958
+ description: Gets or sets the wallet balance.
158959
+ format: double
158960
+ currency:
158961
+ type: string
158962
+ description: Gets or sets the wallet currency.
158963
+ nullable: true
158964
+ customer:
158965
+ $ref: '#/components/schemas/Customer'
158966
+ attendee:
158967
+ $ref: '#/components/schemas/Attendee'
158968
+ transactions:
158969
+ type: array
158970
+ items:
158971
+ $ref: '#/components/schemas/WalletTransaction'
158972
+ description: Gets or sets the wallet transactions.
158973
+ nullable: true
158974
+ additionalProperties: false
158975
+ description: Represents a wallet within the Reach application.
158976
+ WalletDeductionPreview:
158977
+ type: object
158978
+ properties:
158979
+ totalWalletAmountToDeduct:
158980
+ type: number
158981
+ description: Gets or sets the total amount that will be deducted from wallets.
158982
+ format: double
158983
+ remainingAmountToPay:
158984
+ type: number
158985
+ description: Gets or sets the remaining amount that will need to be paid after wallet deductions.
158986
+ format: double
158987
+ currency:
158988
+ type: string
158989
+ description: Gets or sets the currency code.
158990
+ nullable: true
158991
+ customerWallet:
158992
+ $ref: '#/components/schemas/CustomerWalletDeductionPreview'
158993
+ attendeeWallets:
158994
+ type: array
158995
+ items:
158996
+ $ref: '#/components/schemas/AttendeeWalletDeductionPreview'
158997
+ description: Gets or sets the attendee-level wallet deduction information (when tracking at attendee level).
158998
+ nullable: true
158999
+ isWalletOnlyPayments:
159000
+ type: boolean
159001
+ description: Gets or sets a value indicating whether wallet-only payments are enabled for this tenant.
159002
+ default: false
159003
+ isWalletBalanceSufficient:
159004
+ type: boolean
159005
+ description: "Gets or sets a value indicating whether the wallet balance is sufficient to cover the full order amount.\r\nThis is only relevant when wallet-only payments are enabled."
159006
+ default: false
159007
+ canProcessOrder:
159008
+ type: boolean
159009
+ description: "Gets or sets a value indicating whether the order can be processed based on wallet-only payment requirements.\r\nReturns false if wallet-only payments are enabled and wallet balance is insufficient."
159010
+ default: false
159011
+ additionalProperties: false
159012
+ description: Represents wallet deduction preview information for an order.
159013
+ WalletPage:
159014
+ required:
159015
+ - items
159016
+ - pagination
159017
+ type: object
159018
+ properties:
159019
+ pagination:
159020
+ $ref: '#/components/schemas/Pagination'
159021
+ items:
159022
+ type: array
159023
+ items:
159024
+ $ref: '#/components/schemas/Wallet'
159025
+ readOnly: true
159026
+ additionalProperties: false
159027
+ WalletPatch:
159028
+ required:
159029
+ - id
159030
+ - tenantId
159031
+ type: object
159032
+ properties:
159033
+ tenantId:
159034
+ type: string
159035
+ description: Gets or sets the tenant Id.
159036
+ format: uuid
159037
+ id:
159038
+ type: string
159039
+ description: Gets or sets the Id.
159040
+ format: uuid
159041
+ currency:
159042
+ type: string
159043
+ description: "Gets or sets the wallet currency (e.g., \"GBP\", \"USD\", \"EUR\").\r\nNote: Balance cannot be updated directly through this model. Use top-up or transaction operations instead."
159044
+ nullable: true
159045
+ example: GBP.
159046
+ additionalProperties: false
159047
+ description: Patch model for wallet updates.
159048
+ WalletPost:
159049
+ required:
159050
+ - tenantId
159051
+ type: object
159052
+ properties:
159053
+ tenantId:
159054
+ type: string
159055
+ description: Gets or sets the tenant Id.
159056
+ format: uuid
159057
+ customerId:
159058
+ type: string
159059
+ description: "Gets or sets the customer id. This is set when wallet tracking is at customer level.\r\nEither CustomerId or AttendeeId must be provided, but not both."
159060
+ format: uuid
159061
+ nullable: true
159062
+ example: 7c9e6679-7425-40de-944b-e07fc1f90ae7.
159063
+ attendeeId:
159064
+ type: string
159065
+ description: "Gets or sets the attendee id. This is set when wallet tracking is at attendee level.\r\nEither CustomerId or AttendeeId must be provided, but not both."
159066
+ format: uuid
159067
+ nullable: true
159068
+ example: 8d0f7780-8536-51ef-a55c-f18gd2g01bf8.
159069
+ currency:
159070
+ type: string
159071
+ description: "Gets or sets the wallet currency (e.g., \"GBP\", \"USD\", \"EUR\").\r\nIf not provided, will default to the tenant's currency."
159072
+ nullable: true
159073
+ example: GBP.
159074
+ additionalProperties: false
159075
+ description: Post model for wallet creation.
159076
+ WalletRemoveCreditPost:
159077
+ required:
159078
+ - amount
159079
+ type: object
159080
+ properties:
159081
+ amount:
159082
+ minimum: 0.01
159083
+ type: number
159084
+ description: Gets or sets the amount to remove from the wallet. Must be greater than zero and cannot exceed the wallet balance.
159085
+ format: double
159086
+ description:
159087
+ type: string
159088
+ description: "Gets or sets the optional description for the transaction.\r\nIf not provided, a default description will be generated."
159089
+ nullable: true
159090
+ example: Manual credit removal for refund adjustment.
159091
+ additionalProperties: false
159092
+ description: Post model for wallet credit removal operations.
159093
+ WalletTopUpPost:
159094
+ required:
159095
+ - amount
159096
+ type: object
159097
+ properties:
159098
+ amount:
159099
+ minimum: 0.01
159100
+ type: number
159101
+ description: Gets or sets the amount to add to the wallet. Must be greater than zero.
159102
+ format: double
159103
+ description:
159104
+ type: string
159105
+ description: "Gets or sets the optional description for the transaction.\r\nIf not provided, a default description will be generated."
159106
+ nullable: true
159107
+ example: Manual top-up for customer credit.
159108
+ additionalProperties: false
159109
+ description: Post model for wallet top-up operations.
159110
+ WalletTrackingLevel:
159111
+ enum:
159112
+ - Customer
159113
+ - Attendee
159114
+ type: string
159115
+ description: Controls the wallet tracking level (customer or attendee).
159116
+ WalletTransaction:
159117
+ required:
159118
+ - amount
159119
+ - balanceAfter
159120
+ - dateCreated
159121
+ - dateModified
159122
+ - isLive
159123
+ - tenantId
159124
+ - transactionType
159125
+ - walletId
159126
+ type: object
159127
+ properties:
159128
+ id:
159129
+ type: string
159130
+ description: Gets or sets the entities Id.
159131
+ format: uuid
159132
+ tenantId:
159133
+ type: string
159134
+ description: Gets or sets the tenant Id.
159135
+ format: uuid
159136
+ dateCreated:
159137
+ type: string
159138
+ description: Gets or sets the created date of this entity.
159139
+ format: date-time
159140
+ dateModified:
159141
+ type: string
159142
+ description: Gets or sets the last modified date of this entity.
159143
+ format: date-time
159144
+ modifiedById:
159145
+ type: string
159146
+ description: Gets or sets the modified by Id.
159147
+ format: uuid
159148
+ nullable: true
159149
+ isLive:
159150
+ type: boolean
159151
+ description: Gets or sets a value indicating whether the record is live and available for use within the application.
159152
+ default: false
159153
+ walletId:
159154
+ type: string
159155
+ description: Gets or sets the wallet id.
159156
+ format: uuid
159157
+ orderId:
159158
+ type: string
159159
+ description: Gets or sets the order id. This is set when the transaction is related to an order (payment or refund).
159160
+ format: uuid
159161
+ nullable: true
159162
+ amount:
159163
+ type: number
159164
+ description: 'Gets or sets the transaction amount. Positive for credits (top-ups, refunds), negative for debits (payments).'
159165
+ format: double
159166
+ transactionType:
159167
+ $ref: '#/components/schemas/WalletTransactionType'
159168
+ description:
159169
+ type: string
159170
+ description: Gets or sets the transaction description.
159171
+ nullable: true
159172
+ balanceAfter:
159173
+ type: number
159174
+ description: Gets or sets the wallet balance after this transaction was applied.
159175
+ format: double
159176
+ wallet:
159177
+ $ref: '#/components/schemas/Wallet'
159178
+ order:
159179
+ $ref: '#/components/schemas/Order'
159180
+ additionalProperties: false
159181
+ description: Represents a wallet transaction within the Reach application.
159182
+ WalletTransactionPage:
159183
+ required:
159184
+ - items
159185
+ - pagination
159186
+ type: object
159187
+ properties:
159188
+ pagination:
159189
+ $ref: '#/components/schemas/Pagination'
159190
+ items:
159191
+ type: array
159192
+ items:
159193
+ $ref: '#/components/schemas/WalletTransaction'
159194
+ readOnly: true
159195
+ additionalProperties: false
159196
+ WalletTransactionPatch:
159197
+ required:
159198
+ - id
159199
+ - tenantId
159200
+ type: object
159201
+ properties:
159202
+ tenantId:
159203
+ type: string
159204
+ description: Gets or sets the tenant Id.
159205
+ format: uuid
159206
+ id:
159207
+ type: string
159208
+ description: Gets or sets the Id.
159209
+ format: uuid
159210
+ description:
159211
+ type: string
159212
+ description: Gets or sets the transaction description.
159213
+ nullable: true
159214
+ example: Top-up of 10.50 GBP.
159215
+ additionalProperties: false
159216
+ description: Patch model for wallet transaction updates.
159217
+ WalletTransactionPost:
159218
+ required:
159219
+ - tenantId
159220
+ type: object
159221
+ properties:
159222
+ tenantId:
159223
+ type: string
159224
+ description: Gets or sets the tenant Id.
159225
+ format: uuid
159226
+ walletId:
159227
+ type: string
159228
+ description: Gets or sets the wallet id.
159229
+ format: uuid
159230
+ example: 7c9e6679-7425-40de-944b-e07fc1f90ae7.
159231
+ orderId:
159232
+ type: string
159233
+ description: Gets or sets the order id. This is set when the transaction is related to an order (payment or refund).
159234
+ format: uuid
159235
+ nullable: true
159236
+ example: 8d0f7780-8536-51ef-a55c-f18gd2g01bf8.
159237
+ amount:
159238
+ type: number
159239
+ description: 'Gets or sets the transaction amount. Positive for credits (top-ups, refunds), negative for debits (payments).'
159240
+ format: double
159241
+ transactionType:
159242
+ $ref: '#/components/schemas/WalletTransactionType'
159243
+ description:
159244
+ type: string
159245
+ description: Gets or sets the transaction description.
159246
+ nullable: true
159247
+ example: Top-up of 10.50 GBP.
159248
+ additionalProperties: false
159249
+ description: Post model for wallet transaction creation.
159250
+ WalletTransactionType:
159251
+ enum:
159252
+ - TopUp
159253
+ - Payment
159254
+ - Refund
159255
+ - Adjustment
159256
+ type: string
159257
+ description: Controls the wallet transaction type.