@teamleader/focus-api-specification 1.103.0 → 1.105.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ info:
3
3
  title: Teamleader API
4
4
  description: This is the documentation of the Teamleader Focus API. If you have any feedback, or are you missing functionality to support your use case? Let us know via [api@teamleader.eu](mailto:api@teamleader.eu).
5
5
  contact: {}
6
- version: 1.103.0
6
+ version: 1.105.0
7
7
  servers:
8
8
  - url: https://api.focus.teamleader.eu
9
9
  variables: {}
@@ -16124,6 +16124,19 @@ paths:
16124
16124
  iban_number:
16125
16125
  type: string
16126
16126
  nullable: true
16127
+ payment_status:
16128
+ type: string
16129
+ enum:
16130
+ - unknown
16131
+ - paid
16132
+ - partially_paid
16133
+ - not_paid
16134
+ paid_amount:
16135
+ type: number
16136
+ nullable: true
16137
+ paid_at:
16138
+ type: string
16139
+ nullable: true
16127
16140
  meta:
16128
16141
  allOf:
16129
16142
  - title: Meta
@@ -16163,6 +16176,9 @@ paths:
16163
16176
  review_status: pending
16164
16177
  bookkeeping_status: not_sent
16165
16178
  iban_number: FR7630006000011234567890189
16179
+ payment_status: paid
16180
+ paid_amount: 100
16181
+ paid_at: '2025-12-12'
16166
16182
  meta:
16167
16183
  page:
16168
16184
  size: 10
@@ -16472,6 +16488,84 @@ paths:
16472
16488
  payment_reference: REF-3578296
16473
16489
  review_status: pending
16474
16490
  iban_number: BE68539007547034
16491
+ /incomingCreditNotes.listPayments:
16492
+ post:
16493
+ summary: incomingCreditNotes.listPayments
16494
+ operationId: incomingCreditNotes.listPayments
16495
+ description: List payments for an incoming credit note.
16496
+ tags:
16497
+ - incoming_credit_notes
16498
+ requestBody:
16499
+ required: true
16500
+ content:
16501
+ application/json:
16502
+ schema:
16503
+ title: incomingCreditNotes.listPaymentsrequest
16504
+ type: object
16505
+ properties: &ref_442
16506
+ id:
16507
+ type: string
16508
+ required: &ref_443
16509
+ - id
16510
+ example:
16511
+ id: 018d5965-19fb-701a-af11-e80451931551
16512
+ responses:
16513
+ '200':
16514
+ description: OK
16515
+ content:
16516
+ application/json:
16517
+ schema:
16518
+ title: receipts.listPaymentsresponse
16519
+ type: object
16520
+ properties: &ref_444
16521
+ data:
16522
+ type: array
16523
+ items:
16524
+ type: object
16525
+ properties:
16526
+ id:
16527
+ type: string
16528
+ payment:
16529
+ title: Money
16530
+ required: *ref_31
16531
+ type: object
16532
+ properties: *ref_32
16533
+ paid_at:
16534
+ type: string
16535
+ format: date-time
16536
+ payment_method:
16537
+ type: object
16538
+ nullable: true
16539
+ properties:
16540
+ type:
16541
+ type: string
16542
+ id:
16543
+ type: string
16544
+ remark:
16545
+ type: string
16546
+ nullable: true
16547
+ meta:
16548
+ type: object
16549
+ properties:
16550
+ total:
16551
+ type: object
16552
+ properties:
16553
+ amount:
16554
+ type: number
16555
+ example:
16556
+ data:
16557
+ - id: 018d5965-19fb-701a-af11-e80451931551
16558
+ payment:
16559
+ amount: 123.3
16560
+ currency: EUR
16561
+ paid_at: '2016-03-03T16:44:33+00:00'
16562
+ payment_method:
16563
+ type: paymentMethod
16564
+ id: bb9589ec-6e08-0d5f-9b23-7be9b9c3ea2d
16565
+ remark: This is a remark
16566
+ meta:
16567
+ total:
16568
+ amount: 123.3
16475
16569
  /incomingCreditNotes.markAsPendingReview:
16476
16570
  post:
16477
16571
  summary: incomingCreditNotes.markAsPendingReview
@@ -16522,6 +16616,97 @@ paths:
16522
16616
  description: No Content
16523
16617
  headers: {}
16524
16618
  content: {}
16619
+ /incomingCreditNotes.registerPayment:
16620
+ post:
16621
+ summary: incomingCreditNotes.registerPayment
16622
+ operationId: incomingCreditNotes.registerPayment
16623
+ description: Register a payment for an incoming credit note.
16624
+ tags:
16625
+ - incoming_credit_notes
16626
+ requestBody:
16627
+ required: true
16628
+ content:
16629
+ application/json:
16630
+ schema:
16631
+ title: receipts.incomingCreditNotes
16632
+ type: object
16633
+ properties: &ref_445
16634
+ id:
16635
+ type: string
16636
+ payment:
16637
+ title: Money
16638
+ required: *ref_31
16639
+ type: object
16640
+ properties: *ref_32
16641
+ paid_at:
16642
+ type: string
16643
+ format: date-time
16644
+ payment_method_id:
16645
+ type: string
16646
+ nullable: true
16647
+ remark:
16648
+ type: string
16649
+ nullable: true
16650
+ required: &ref_446
16651
+ - id
16652
+ - payment
16653
+ - paid_at
16654
+ example:
16655
+ id: 018d5965-19fb-701a-af11-e80451931551
16656
+ payment:
16657
+ amount: 123.3
16658
+ currency: EUR
16659
+ paid_at: '2016-03-03T16:44:33+00:00'
16660
+ payment_method_id: bb9589ec-6e08-0d5f-9b23-7be9b9c3ea2d
16661
+ remark: This is a remark
16662
+ responses:
16663
+ '201':
16664
+ description: Created
16665
+ content:
16666
+ application/json:
16667
+ schema:
16668
+ title: receipts.registerPaymentresponse
16669
+ type: object
16670
+ properties: &ref_447
16671
+ data:
16672
+ type: object
16673
+ properties:
16674
+ type:
16675
+ type: string
16676
+ id:
16677
+ type: string
16678
+ example:
16679
+ data:
16680
+ id: 88268bc5-86bc-43cb-8c9f-fdcf125e1ad0
16681
+ type: financialTransaction
16682
+ /incomingCreditNotes.removePayment:
16683
+ post:
16684
+ summary: incomingCreditNotes.removePayment
16685
+ operationId: incomingCreditNotes.removePayment
16686
+ description: Remove a payment from an incoming credit note.
16687
+ tags:
16688
+ - incoming_credit_notes
16689
+ requestBody:
16690
+ required: true
16691
+ content:
16692
+ application/json:
16693
+ schema:
16694
+ title: receipts.removePaymentrequest
16695
+ type: object
16696
+ properties: &ref_448
16697
+ id:
16698
+ type: string
16699
+ payment_id:
16700
+ type: string
16701
+ required: &ref_449
16702
+ - id
16703
+ - payment_id
16704
+ example:
16705
+ id: 018d5965-19fb-701a-af11-e80451931551
16706
+ payment_id: 018d5965-19fb-701a-af11-e80451931551
16707
+ responses:
16708
+ '204':
16709
+ description: No Content
16525
16710
  /incomingCreditNotes.sendToBookkeeping:
16526
16711
  post:
16527
16712
  summary: incomingCreditNotes.sendToBookkeeping
@@ -16643,6 +16828,56 @@ paths:
16643
16828
  description: No Content
16644
16829
  headers: {}
16645
16830
  content: {}
16831
+ /incomingCreditNotes.updatePayment:
16832
+ post:
16833
+ summary: incomingCreditNotes.updatePayment
16834
+ operationId: incomingCreditNotes.updatePayment
16835
+ description: Update a payment for an incoming credit note.
16836
+ tags:
16837
+ - incoming_credit_notes
16838
+ requestBody:
16839
+ required: true
16840
+ content:
16841
+ application/json:
16842
+ schema:
16843
+ title: incomingCreditNotes.updatePaymentrequest
16844
+ type: object
16845
+ properties: &ref_450
16846
+ id:
16847
+ type: string
16848
+ payment_id:
16849
+ type: string
16850
+ payment:
16851
+ title: Money
16852
+ required: *ref_31
16853
+ type: object
16854
+ properties: *ref_32
16855
+ paid_at:
16856
+ type: string
16857
+ format: date-time
16858
+ payment_method_id:
16859
+ type: string
16860
+ nullable: true
16861
+ remark:
16862
+ type: string
16863
+ nullable: true
16864
+ required: &ref_451
16865
+ - id
16866
+ - payment_id
16867
+ example:
16868
+ id: 018d5965-19fb-701a-af11-e80451931551
16869
+ payment_id: aa7e7d42-a951-4cde-85b8-ae447a2f1ac4
16870
+ payment:
16871
+ amount: 123.3
16872
+ currency: EUR
16873
+ paid_at: '2016-03-03T16:44:33+00:00'
16874
+ payment_method_id: bb9589ec-6e08-0d5f-9b23-7be9b9c3ea2d
16875
+ remark: This is an updated remark
16876
+ responses:
16877
+ '204':
16878
+ description: No Content
16879
+ content:
16880
+ application/json: {}
16646
16881
  /incomingInvoices.add:
16647
16882
  post:
16648
16883
  summary: incomingInvoices.add
@@ -16947,6 +17182,84 @@ paths:
16947
17182
  payment_reference: REF-3578296
16948
17183
  review_status: pending
16949
17184
  iban_number: BE68539007547034
17185
+ /incomingInvoices.listPayments:
17186
+ post:
17187
+ summary: incomingInvoices.listPayments
17188
+ operationId: incomingInvoices.listPayments
17189
+ description: List payments for an incoming invoice.
17190
+ tags:
17191
+ - incoming_invoices
17192
+ requestBody:
17193
+ required: true
17194
+ content:
17195
+ application/json:
17196
+ schema:
17197
+ title: incomingInvoices.listPaymentsrequest
17198
+ type: object
17199
+ properties: &ref_452
17200
+ id:
17201
+ type: string
17202
+ required: &ref_453
17203
+ - id
17204
+ example:
17205
+ id: 018d5965-19fb-701a-af11-e80451931551
17206
+ responses:
17207
+ '200':
17208
+ description: OK
17209
+ content:
17210
+ application/json:
17211
+ schema:
17212
+ title: receipts.listPaymentsresponse
17213
+ type: object
17214
+ properties: &ref_454
17215
+ data:
17216
+ type: array
17217
+ items:
17218
+ type: object
17219
+ properties:
17220
+ id:
17221
+ type: string
17222
+ payment:
17223
+ title: Money
17224
+ required: *ref_31
17225
+ type: object
17226
+ properties: *ref_32
17227
+ paid_at:
17228
+ type: string
17229
+ format: date-time
17230
+ payment_method:
17231
+ type: object
17232
+ nullable: true
17233
+ properties:
17234
+ type:
17235
+ type: string
17236
+ id:
17237
+ type: string
17238
+ remark:
17239
+ type: string
17240
+ nullable: true
17241
+ meta:
17242
+ type: object
17243
+ properties:
17244
+ total:
17245
+ type: object
17246
+ properties:
17247
+ amount:
17248
+ type: number
17249
+ example:
17250
+ data:
17251
+ - id: 018d5965-19fb-701a-af11-e80451931551
17252
+ payment:
17253
+ amount: 123.3
17254
+ currency: EUR
17255
+ paid_at: '2016-03-03T16:44:33+00:00'
17256
+ payment_method:
17257
+ type: paymentMethod
17258
+ id: bb9589ec-6e08-0d5f-9b23-7be9b9c3ea2d
17259
+ remark: This is a remark
17260
+ meta:
17261
+ total:
17262
+ amount: 123.3
16950
17263
  /incomingInvoices.markAsPendingReview:
16951
17264
  post:
16952
17265
  summary: incomingInvoices.markAsPendingReview
@@ -16997,6 +17310,99 @@ paths:
16997
17310
  description: No Content
16998
17311
  headers: {}
16999
17312
  content: {}
17313
+ /incomingInvoices.registerPayment:
17314
+ post:
17315
+ summary: incomingInvoices.registerPayment
17316
+ operationId: incomingInvoices.registerPayment
17317
+ description: Register a payment for an incoming invoice.
17318
+ tags:
17319
+ - incoming_invoices
17320
+ requestBody:
17321
+ required: true
17322
+ content:
17323
+ application/json:
17324
+ schema:
17325
+ title: incomingInvoices.registerPaymentrequest
17326
+ type: object
17327
+ properties: &ref_455
17328
+ id:
17329
+ type: string
17330
+ payment:
17331
+ title: Money
17332
+ required: *ref_31
17333
+ type: object
17334
+ properties: *ref_32
17335
+ paid_at:
17336
+ type: string
17337
+ format: date-time
17338
+ payment_method_id:
17339
+ type: string
17340
+ nullable: true
17341
+ remark:
17342
+ type: string
17343
+ nullable: true
17344
+ required: &ref_456
17345
+ - id
17346
+ - payment
17347
+ - paid_at
17348
+ example:
17349
+ id: 018d5965-19fb-701a-af11-e80451931551
17350
+ payment:
17351
+ amount: 123.3
17352
+ currency: EUR
17353
+ paid_at: '2016-03-03T16:44:33+00:00'
17354
+ payment_method_id: bb9589ec-6e08-0d5f-9b23-7be9b9c3ea2d
17355
+ remark: This is a remark
17356
+ responses:
17357
+ '201':
17358
+ description: Created
17359
+ content:
17360
+ application/json:
17361
+ schema:
17362
+ title: receipts.registerPaymentresponse
17363
+ type: object
17364
+ properties: &ref_457
17365
+ data:
17366
+ type: object
17367
+ properties:
17368
+ type:
17369
+ type: string
17370
+ id:
17371
+ type: string
17372
+ example:
17373
+ data:
17374
+ type: financialTransaction
17375
+ id: ee94b4c0-5786-0517-9d26-8dd1e6406f20
17376
+ /incomingInvoices.removePayment:
17377
+ post:
17378
+ summary: incomingInvoices.removePayment
17379
+ operationId: incomingInvoices.removePayment
17380
+ description: Remove a payment from an incoming invoice.
17381
+ tags:
17382
+ - incoming_invoices
17383
+ requestBody:
17384
+ required: true
17385
+ content:
17386
+ application/json:
17387
+ schema:
17388
+ title: incomingInvoices.removePaymentrequest
17389
+ type: object
17390
+ properties: &ref_458
17391
+ id:
17392
+ type: string
17393
+ payment_id:
17394
+ type: string
17395
+ required: &ref_459
17396
+ - id
17397
+ - payment_id
17398
+ example:
17399
+ id: 018d5965-19fb-701a-af11-e80451931551
17400
+ payment_id: 018d5965-19fb-701a-af11-e80451931551
17401
+ responses:
17402
+ '204':
17403
+ description: No Content
17404
+ content:
17405
+ application/json: {}
17000
17406
  /incomingInvoices.sendToBookkeeping:
17001
17407
  post:
17002
17408
  summary: incomingInvoices.sendToBookkeeping
@@ -17118,6 +17524,56 @@ paths:
17118
17524
  description: No Content
17119
17525
  headers: {}
17120
17526
  content: {}
17527
+ /incomingInvoices.updatePayment:
17528
+ post:
17529
+ summary: incomingInvoices.updatePayment
17530
+ operationId: incomingInvoices.updatePayment
17531
+ description: Update a payment for an incoming invoice.
17532
+ tags:
17533
+ - incoming_invoices
17534
+ requestBody:
17535
+ required: true
17536
+ content:
17537
+ application/json:
17538
+ schema:
17539
+ title: incomingInvoices.updatePaymentrequest
17540
+ type: object
17541
+ properties: &ref_460
17542
+ id:
17543
+ type: string
17544
+ payment_id:
17545
+ type: string
17546
+ payment:
17547
+ title: Money
17548
+ required: *ref_31
17549
+ type: object
17550
+ properties: *ref_32
17551
+ paid_at:
17552
+ type: string
17553
+ format: date-time
17554
+ payment_method_id:
17555
+ type: string
17556
+ nullable: true
17557
+ remark:
17558
+ type: string
17559
+ nullable: true
17560
+ required: &ref_461
17561
+ - id
17562
+ - payment_id
17563
+ example:
17564
+ id: 018d5965-19fb-701a-af11-e80451931551
17565
+ payment_id: aa7e7d42-a951-4cde-85b8-ae447a2f1ac4
17566
+ payment:
17567
+ amount: 123.3
17568
+ currency: EUR
17569
+ paid_at: '2016-03-03T16:44:33+00:00'
17570
+ payment_method_id: bb9589ec-6e08-0d5f-9b23-7be9b9c3ea2d
17571
+ remark: This is a remark
17572
+ responses:
17573
+ '204':
17574
+ description: No Content
17575
+ content:
17576
+ application/json: {}
17121
17577
  /receipts.add:
17122
17578
  post:
17123
17579
  summary: receipts.add
@@ -17377,6 +17833,84 @@ paths:
17377
17833
  type: file
17378
17834
  id: 5027619a-5e0a-01ce-a533-f80dfcc3f142
17379
17835
  review_status: pending
17836
+ /receipts.listPayments:
17837
+ post:
17838
+ summary: receipts.listPayments
17839
+ operationId: receipts.listPayments
17840
+ description: List payments for a(n incoming) receipt.
17841
+ tags:
17842
+ - receipts
17843
+ requestBody:
17844
+ required: true
17845
+ content:
17846
+ application/json:
17847
+ schema:
17848
+ title: receipts.listPaymentsrequest
17849
+ type: object
17850
+ properties: &ref_462
17851
+ id:
17852
+ type: string
17853
+ required: &ref_463
17854
+ - id
17855
+ example:
17856
+ id: 018d5965-19fb-701a-af11-e80451931551
17857
+ responses:
17858
+ '200':
17859
+ description: OK
17860
+ content:
17861
+ application/json:
17862
+ schema:
17863
+ title: receipts.listPaymentsresponse
17864
+ type: object
17865
+ properties: &ref_464
17866
+ data:
17867
+ type: array
17868
+ items:
17869
+ type: object
17870
+ properties:
17871
+ id:
17872
+ type: string
17873
+ payment:
17874
+ title: Money
17875
+ required: *ref_31
17876
+ type: object
17877
+ properties: *ref_32
17878
+ paid_at:
17879
+ type: string
17880
+ format: date-time
17881
+ payment_method:
17882
+ type: object
17883
+ nullable: true
17884
+ properties:
17885
+ type:
17886
+ type: string
17887
+ id:
17888
+ type: string
17889
+ remark:
17890
+ type: string
17891
+ nullable: true
17892
+ meta:
17893
+ type: object
17894
+ properties:
17895
+ total:
17896
+ type: object
17897
+ properties:
17898
+ amount:
17899
+ type: number
17900
+ example:
17901
+ data:
17902
+ - id: 018d5965-19fb-701a-af11-e80451931551
17903
+ payment:
17904
+ amount: 123.3
17905
+ currency: EUR
17906
+ paid_at: '2016-03-03T16:44:33+00:00'
17907
+ payment_method:
17908
+ type: paymentMethod
17909
+ id: bb9589ec-6e08-0d5f-9b23-7be9b9c3ea2d
17910
+ remark: This is a remark
17911
+ meta:
17912
+ total:
17913
+ amount: 123.3
17380
17914
  /receipts.markAsPendingReview:
17381
17915
  post:
17382
17916
  summary: receipts.markAsPendingReview
@@ -17427,6 +17961,99 @@ paths:
17427
17961
  description: No Content
17428
17962
  headers: {}
17429
17963
  content: {}
17964
+ /receipts.registerPayment:
17965
+ post:
17966
+ summary: receipts.registerPayment
17967
+ operationId: receipts.registerPayment
17968
+ description: Register a payment for a(n incoming) receipt.
17969
+ tags:
17970
+ - receipts
17971
+ requestBody:
17972
+ required: true
17973
+ content:
17974
+ application/json:
17975
+ schema:
17976
+ title: receipts.registerPaymentrequest
17977
+ type: object
17978
+ properties: &ref_465
17979
+ id:
17980
+ type: string
17981
+ payment:
17982
+ title: Money
17983
+ required: *ref_31
17984
+ type: object
17985
+ properties: *ref_32
17986
+ paid_at:
17987
+ type: string
17988
+ format: date-time
17989
+ payment_method_id:
17990
+ type: string
17991
+ nullable: true
17992
+ remark:
17993
+ type: string
17994
+ nullable: true
17995
+ required: &ref_466
17996
+ - id
17997
+ - payment
17998
+ - paid_at
17999
+ example:
18000
+ id: 018d5965-19fb-701a-af11-e80451931551
18001
+ payment:
18002
+ amount: 123.3
18003
+ currency: EUR
18004
+ paid_at: '2016-03-03T16:44:33+00:00'
18005
+ payment_method_id: bb9589ec-6e08-0d5f-9b23-7be9b9c3ea2d
18006
+ remark: This is a remark
18007
+ responses:
18008
+ '201':
18009
+ description: Created
18010
+ content:
18011
+ application/json:
18012
+ schema:
18013
+ title: receipts.registerPaymentresponse
18014
+ type: object
18015
+ properties: &ref_467
18016
+ data:
18017
+ type: object
18018
+ properties:
18019
+ type:
18020
+ type: string
18021
+ id:
18022
+ type: string
18023
+ example:
18024
+ data:
18025
+ id: 6deb188e-3468-4886-b6a1-2306e7fc18fb
18026
+ type: financialTransaction
18027
+ /receipts.removePayment:
18028
+ post:
18029
+ summary: receipts.removePayment
18030
+ operationId: receipts.removePayment
18031
+ description: Remove a payment from a receipt.
18032
+ tags:
18033
+ - receipts
18034
+ requestBody:
18035
+ required: true
18036
+ content:
18037
+ application/json:
18038
+ schema:
18039
+ title: receipts.removePaymentrequest
18040
+ type: object
18041
+ properties: &ref_468
18042
+ id:
18043
+ type: string
18044
+ payment_id:
18045
+ type: string
18046
+ required: &ref_469
18047
+ - id
18048
+ - payment_id
18049
+ example:
18050
+ id: 018d5965-19fb-701a-af11-e80451931551
18051
+ payment_id: 018d5965-19fb-701a-af11-e80451931551
18052
+ responses:
18053
+ '204':
18054
+ description: No Content
18055
+ content:
18056
+ application/json: {}
17430
18057
  /receipts.sendToBookkeeping:
17431
18058
  post:
17432
18059
  summary: receipts.sendToBookkeeping
@@ -17526,6 +18153,56 @@ paths:
17526
18153
  description: No Content
17527
18154
  headers: {}
17528
18155
  content: {}
18156
+ /receipts.updatePayment:
18157
+ post:
18158
+ summary: receipts.updatePayment
18159
+ operationId: receipts.updatePayment
18160
+ description: Update a payment for a(n incoming) receipt.
18161
+ tags:
18162
+ - receipts
18163
+ requestBody:
18164
+ required: true
18165
+ content:
18166
+ application/json:
18167
+ schema:
18168
+ title: receipts.updatePaymentrequest
18169
+ type: object
18170
+ properties: &ref_470
18171
+ id:
18172
+ type: string
18173
+ payment_id:
18174
+ type: string
18175
+ payment:
18176
+ title: Money
18177
+ required: *ref_31
18178
+ type: object
18179
+ properties: *ref_32
18180
+ paid_at:
18181
+ type: string
18182
+ format: date-time
18183
+ payment_method_id:
18184
+ type: string
18185
+ nullable: true
18186
+ remark:
18187
+ type: string
18188
+ nullable: true
18189
+ required: &ref_471
18190
+ - id
18191
+ - payment_id
18192
+ example:
18193
+ id: 018d5965-19fb-701a-af11-e80451931551
18194
+ payment_id: aa7e7d42-a951-4cde-85b8-ae447a2f1ac4
18195
+ payment:
18196
+ amount: 123.3
18197
+ currency: EUR
18198
+ paid_at: '2016-03-03T16:44:33+00:00'
18199
+ payment_method_id: bb9589ec-6e08-0d5f-9b23-7be9b9c3ea2d
18200
+ remark: This is an updated remark
18201
+ responses:
18202
+ '204':
18203
+ description: No Content
18204
+ content:
18205
+ application/json: {}
17529
18206
  /productCategories.list:
17530
18207
  post:
17531
18208
  tags:
@@ -17542,7 +18219,7 @@ paths:
17542
18219
  allOf:
17543
18220
  - title: productCategories.listrequest
17544
18221
  type: object
17545
- properties: &ref_442
18222
+ properties: &ref_472
17546
18223
  filter:
17547
18224
  type: object
17548
18225
  properties:
@@ -17567,7 +18244,7 @@ paths:
17567
18244
  allOf:
17568
18245
  - title: productCategories.listresponse
17569
18246
  type: object
17570
- properties: &ref_443
18247
+ properties: &ref_473
17571
18248
  data:
17572
18249
  type: array
17573
18250
  items:
@@ -17628,7 +18305,7 @@ paths:
17628
18305
  allOf:
17629
18306
  - title: products.listrequest
17630
18307
  type: object
17631
- properties: &ref_444
18308
+ properties: &ref_474
17632
18309
  filter:
17633
18310
  type: object
17634
18311
  properties:
@@ -17678,7 +18355,7 @@ paths:
17678
18355
  allOf:
17679
18356
  - title: products.listresponse
17680
18357
  type: object
17681
- properties: &ref_445
18358
+ properties: &ref_475
17682
18359
  data:
17683
18360
  type: array
17684
18361
  items:
@@ -17795,10 +18472,10 @@ paths:
17795
18472
  schema:
17796
18473
  allOf:
17797
18474
  - title: products.inforequest
17798
- required: &ref_446
18475
+ required: &ref_476
17799
18476
  - id
17800
18477
  type: object
17801
- properties: &ref_447
18478
+ properties: &ref_477
17802
18479
  id:
17803
18480
  type: string
17804
18481
  example: 6fac0bf0-e803-424e-af67-76863a3d7d16
@@ -17823,7 +18500,7 @@ paths:
17823
18500
  allOf:
17824
18501
  - title: products.inforesponse
17825
18502
  type: object
17826
- properties: &ref_448
18503
+ properties: &ref_478
17827
18504
  data:
17828
18505
  type: object
17829
18506
  properties:
@@ -18114,11 +18791,11 @@ paths:
18114
18791
  example: d905ff57-e866-0f59-9d1e-1fd4538bfae1
18115
18792
  price:
18116
18793
  title: ProductPriceWrite
18117
- required: &ref_449
18794
+ required: &ref_479
18118
18795
  - amount
18119
18796
  - currency
18120
18797
  type: object
18121
- properties: &ref_450
18798
+ properties: &ref_480
18122
18799
  amount:
18123
18800
  type: number
18124
18801
  example: 100
@@ -18145,11 +18822,11 @@ paths:
18145
18822
  description: Only available when stock management feature is enabled
18146
18823
  allOf:
18147
18824
  - title: StockThreshold
18148
- required: &ref_451
18825
+ required: &ref_481
18149
18826
  - minimum
18150
18827
  - action
18151
18828
  type: object
18152
- properties: &ref_452
18829
+ properties: &ref_482
18153
18830
  minimum:
18154
18831
  type: number
18155
18832
  description: Cannot be negative
@@ -18195,7 +18872,7 @@ paths:
18195
18872
  allOf:
18196
18873
  - title: products.addresponse
18197
18874
  type: object
18198
- properties: &ref_453
18875
+ properties: &ref_483
18199
18876
  data:
18200
18877
  title: TypeAndId
18201
18878
  type: object
@@ -18224,10 +18901,10 @@ paths:
18224
18901
  schema:
18225
18902
  allOf:
18226
18903
  - title: products.updaterequest
18227
- required: &ref_454
18904
+ required: &ref_484
18228
18905
  - id
18229
18906
  type: object
18230
- properties: &ref_455
18907
+ properties: &ref_485
18231
18908
  id:
18232
18909
  type: string
18233
18910
  example: 71e91f91-b222-033f-8c7e-59bcc1521e3d
@@ -18378,10 +19055,10 @@ paths:
18378
19055
  schema:
18379
19056
  allOf:
18380
19057
  - title: products.deleterequest
18381
- required: &ref_456
19058
+ required: &ref_486
18382
19059
  - id
18383
19060
  type: object
18384
- properties: &ref_457
19061
+ properties: &ref_487
18385
19062
  id:
18386
19063
  type: string
18387
19064
  example: 71e91f91-b222-033f-8c7e-59bcc1521e3d
@@ -18424,7 +19101,7 @@ paths:
18424
19101
  allOf:
18425
19102
  - title: unitsOfMeasure.listresponse
18426
19103
  type: object
18427
- properties: &ref_458
19104
+ properties: &ref_488
18428
19105
  data:
18429
19106
  type: array
18430
19107
  items:
@@ -18457,7 +19134,7 @@ paths:
18457
19134
  allOf:
18458
19135
  - title: priceLists.listrequest
18459
19136
  type: object
18460
- properties: &ref_459
19137
+ properties: &ref_489
18461
19138
  filter:
18462
19139
  type: object
18463
19140
  properties:
@@ -18486,7 +19163,7 @@ paths:
18486
19163
  allOf:
18487
19164
  - title: priceLists.listresponse
18488
19165
  type: object
18489
- properties: &ref_460
19166
+ properties: &ref_490
18490
19167
  data:
18491
19168
  type: array
18492
19169
  items:
@@ -18533,7 +19210,7 @@ paths:
18533
19210
  allOf:
18534
19211
  - title: projects.listrequest
18535
19212
  type: object
18536
- properties: &ref_461
19213
+ properties: &ref_491
18537
19214
  filter:
18538
19215
  type: object
18539
19216
  properties:
@@ -18618,7 +19295,7 @@ paths:
18618
19295
  allOf:
18619
19296
  - title: projects.listresponse
18620
19297
  type: object
18621
- properties: &ref_462
19298
+ properties: &ref_492
18622
19299
  data:
18623
19300
  type: array
18624
19301
  items:
@@ -18853,10 +19530,10 @@ paths:
18853
19530
  schema:
18854
19531
  allOf:
18855
19532
  - title: projects.inforequest
18856
- required: &ref_463
19533
+ required: &ref_493
18857
19534
  - id
18858
19535
  type: object
18859
- properties: &ref_464
19536
+ properties: &ref_494
18860
19537
  id:
18861
19538
  type: string
18862
19539
  example: 8a04371b-2ffb-407b-9b24-d5b5452009c7
@@ -18875,7 +19552,7 @@ paths:
18875
19552
  allOf:
18876
19553
  - title: projects.inforesponse
18877
19554
  type: object
18878
- properties: &ref_465
19555
+ properties: &ref_495
18879
19556
  data:
18880
19557
  type: object
18881
19558
  properties:
@@ -19111,13 +19788,13 @@ paths:
19111
19788
  schema:
19112
19789
  allOf:
19113
19790
  - title: projects.createrequest
19114
- required: &ref_466
19791
+ required: &ref_496
19115
19792
  - title
19116
19793
  - starts_on
19117
19794
  - milestones
19118
19795
  - participants
19119
19796
  type: object
19120
- properties: &ref_467
19797
+ properties: &ref_497
19121
19798
  title:
19122
19799
  type: string
19123
19800
  example: New company website
@@ -19265,10 +19942,10 @@ paths:
19265
19942
  schema:
19266
19943
  allOf:
19267
19944
  - title: projects.updaterequest
19268
- required: &ref_468
19945
+ required: &ref_498
19269
19946
  - id
19270
19947
  type: object
19271
- properties: &ref_469
19948
+ properties: &ref_499
19272
19949
  id:
19273
19950
  type: string
19274
19951
  example: dcc2e8ed-51be-4cb6-9c01-034aedac86fd
@@ -19366,10 +20043,10 @@ paths:
19366
20043
  schema:
19367
20044
  allOf:
19368
20045
  - title: projects.closerequest
19369
- required: &ref_470
20046
+ required: &ref_500
19370
20047
  - id
19371
20048
  type: object
19372
- properties: &ref_471
20049
+ properties: &ref_501
19373
20050
  id:
19374
20051
  type: string
19375
20052
  example: 01548b10-4932-4a18-8a89-005ad09db2c8
@@ -19432,10 +20109,10 @@ paths:
19432
20109
  schema:
19433
20110
  allOf:
19434
20111
  - title: projects.deleterequest
19435
- required: &ref_472
20112
+ required: &ref_502
19436
20113
  - id
19437
20114
  type: object
19438
- properties: &ref_473
20115
+ properties: &ref_503
19439
20116
  id:
19440
20117
  type: string
19441
20118
  example: 01548b10-4932-4a18-8a89-005ad09db2c8
@@ -19465,11 +20142,11 @@ paths:
19465
20142
  schema:
19466
20143
  allOf:
19467
20144
  - title: projects.addParticipantrequest
19468
- required: &ref_474
20145
+ required: &ref_504
19469
20146
  - id
19470
20147
  - participant
19471
20148
  type: object
19472
- properties: &ref_475
20149
+ properties: &ref_505
19473
20150
  id:
19474
20151
  type: string
19475
20152
  example: 8dbfa9db-c53f-410c-97d3-755b19685809
@@ -19515,11 +20192,11 @@ paths:
19515
20192
  schema:
19516
20193
  allOf:
19517
20194
  - title: projects.updateParticipantrequest
19518
- required: &ref_476
20195
+ required: &ref_506
19519
20196
  - id
19520
20197
  - role
19521
20198
  type: object
19522
- properties: &ref_477
20199
+ properties: &ref_507
19523
20200
  id:
19524
20201
  type: string
19525
20202
  example: 55fbe14f-7399-48e5-b4e0-64b7f5c50451
@@ -19566,7 +20243,7 @@ paths:
19566
20243
  allOf:
19567
20244
  - title: milestones.listrequest
19568
20245
  type: object
19569
- properties: &ref_478
20246
+ properties: &ref_508
19570
20247
  filter:
19571
20248
  type: object
19572
20249
  properties:
@@ -19653,7 +20330,7 @@ paths:
19653
20330
  allOf:
19654
20331
  - title: milestones.listresponse
19655
20332
  type: object
19656
- properties: &ref_479
20333
+ properties: &ref_509
19657
20334
  data:
19658
20335
  type: array
19659
20336
  items:
@@ -19877,10 +20554,10 @@ paths:
19877
20554
  schema:
19878
20555
  allOf:
19879
20556
  - title: milestones.inforequest
19880
- required: &ref_480
20557
+ required: &ref_510
19881
20558
  - id
19882
20559
  type: object
19883
- properties: &ref_481
20560
+ properties: &ref_511
19884
20561
  id:
19885
20562
  type: string
19886
20563
  example: 64349fa2-6ca2-4b19-82e6-d3258ceab2d8
@@ -19899,7 +20576,7 @@ paths:
19899
20576
  allOf:
19900
20577
  - title: milestones.inforesponse
19901
20578
  type: object
19902
- properties: &ref_482
20579
+ properties: &ref_512
19903
20580
  data:
19904
20581
  type: object
19905
20582
  properties:
@@ -20093,13 +20770,13 @@ paths:
20093
20770
  schema:
20094
20771
  allOf:
20095
20772
  - title: milestones.createrequest
20096
- required: &ref_483
20773
+ required: &ref_513
20097
20774
  - project_id
20098
20775
  - due_on
20099
20776
  - name
20100
20777
  - responsible_user_id
20101
20778
  type: object
20102
- properties: &ref_484
20779
+ properties: &ref_514
20103
20780
  project_id:
20104
20781
  type: string
20105
20782
  example: 1c159f98-4b07-438a-9f42-fb4206b9530d
@@ -20129,7 +20806,7 @@ paths:
20129
20806
  type: object
20130
20807
  properties: *ref_24
20131
20808
  description: ''
20132
- oneOf: &ref_485
20809
+ oneOf: &ref_515
20133
20810
  - type: object
20134
20811
  title: With budget
20135
20812
  properties:
@@ -20197,7 +20874,7 @@ paths:
20197
20874
  allOf:
20198
20875
  - title: milestones.createresponse
20199
20876
  type: object
20200
- properties: &ref_486
20877
+ properties: &ref_516
20201
20878
  data:
20202
20879
  title: TypeAndId
20203
20880
  type: object
@@ -20226,10 +20903,10 @@ paths:
20226
20903
  schema:
20227
20904
  allOf:
20228
20905
  - title: milestones.updaterequest
20229
- required: &ref_487
20906
+ required: &ref_517
20230
20907
  - id
20231
20908
  type: object
20232
- properties: &ref_488
20909
+ properties: &ref_518
20233
20910
  id:
20234
20911
  type: string
20235
20912
  example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
@@ -20306,10 +20983,10 @@ paths:
20306
20983
  schema:
20307
20984
  allOf:
20308
20985
  - title: milestones.deleterequest
20309
- required: &ref_489
20986
+ required: &ref_519
20310
20987
  - id
20311
20988
  type: object
20312
- properties: &ref_490
20989
+ properties: &ref_520
20313
20990
  id:
20314
20991
  type: string
20315
20992
  example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
@@ -20339,10 +21016,10 @@ paths:
20339
21016
  schema:
20340
21017
  allOf:
20341
21018
  - title: milestones.closerequest
20342
- required: &ref_491
21019
+ required: &ref_521
20343
21020
  - id
20344
21021
  type: object
20345
- properties: &ref_492
21022
+ properties: &ref_522
20346
21023
  id:
20347
21024
  type: string
20348
21025
  example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
@@ -20372,10 +21049,10 @@ paths:
20372
21049
  schema:
20373
21050
  allOf:
20374
21051
  - title: milestones.openrequest
20375
- required: &ref_493
21052
+ required: &ref_523
20376
21053
  - id
20377
21054
  type: object
20378
- properties: &ref_494
21055
+ properties: &ref_524
20379
21056
  id:
20380
21057
  type: string
20381
21058
  example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
@@ -20406,7 +21083,7 @@ paths:
20406
21083
  allOf:
20407
21084
  - title: projects-v2.listrequest
20408
21085
  type: object
20409
- properties: &ref_495
21086
+ properties: &ref_525
20410
21087
  filter:
20411
21088
  type: object
20412
21089
  properties:
@@ -20544,7 +21221,7 @@ paths:
20544
21221
  allOf:
20545
21222
  - title: projects-v2.listresponse
20546
21223
  type: object
20547
- properties: &ref_496
21224
+ properties: &ref_526
20548
21225
  data:
20549
21226
  type: array
20550
21227
  items:
@@ -21033,10 +21710,10 @@ paths:
21033
21710
  schema:
21034
21711
  allOf:
21035
21712
  - title: projects-v2.inforequest
21036
- required: &ref_497
21713
+ required: &ref_527
21037
21714
  - id
21038
21715
  type: object
21039
- properties: &ref_498
21716
+ properties: &ref_528
21040
21717
  id:
21041
21718
  type: string
21042
21719
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -21061,7 +21738,7 @@ paths:
21061
21738
  allOf:
21062
21739
  - title: projects.inforesponse1
21063
21740
  type: object
21064
- properties: &ref_499
21741
+ properties: &ref_529
21065
21742
  data:
21066
21743
  type: object
21067
21744
  properties:
@@ -21566,10 +22243,10 @@ paths:
21566
22243
  schema:
21567
22244
  allOf:
21568
22245
  - title: projects-v2.createrequest
21569
- required: &ref_500
22246
+ required: &ref_530
21570
22247
  - title
21571
22248
  type: object
21572
- properties: &ref_501
22249
+ properties: &ref_531
21573
22250
  title:
21574
22251
  type: string
21575
22252
  example: My cool new project
@@ -21886,10 +22563,10 @@ paths:
21886
22563
  schema:
21887
22564
  allOf:
21888
22565
  - title: projects-v2.updaterequest
21889
- required: &ref_502
22566
+ required: &ref_532
21890
22567
  - id
21891
22568
  type: object
21892
- properties: &ref_503
22569
+ properties: &ref_533
21893
22570
  id:
21894
22571
  type: string
21895
22572
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22076,11 +22753,11 @@ paths:
22076
22753
  schema:
22077
22754
  allOf:
22078
22755
  - title: projects-v2.closerequest
22079
- required: &ref_504
22756
+ required: &ref_534
22080
22757
  - id
22081
22758
  - closing_strategy
22082
22759
  type: object
22083
- properties: &ref_505
22760
+ properties: &ref_535
22084
22761
  id:
22085
22762
  type: string
22086
22763
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22146,11 +22823,11 @@ paths:
22146
22823
  schema:
22147
22824
  allOf:
22148
22825
  - title: projects-v2.duplicaterequest
22149
- required: &ref_506
22826
+ required: &ref_536
22150
22827
  - id
22151
22828
  - title
22152
22829
  type: object
22153
- properties: &ref_507
22830
+ properties: &ref_537
22154
22831
  id:
22155
22832
  type: string
22156
22833
  example: 81df9996-6d2c-4844-86d6-202c08d2837e
@@ -22174,7 +22851,7 @@ paths:
22174
22851
  allOf:
22175
22852
  - title: projects-v2.duplicateresponse
22176
22853
  type: object
22177
- properties: &ref_508
22854
+ properties: &ref_538
22178
22855
  data:
22179
22856
  title: TypeAndId
22180
22857
  type: object
@@ -22203,11 +22880,11 @@ paths:
22203
22880
  schema:
22204
22881
  allOf:
22205
22882
  - title: projects-v2.deleterequest
22206
- required: &ref_509
22883
+ required: &ref_539
22207
22884
  - id
22208
22885
  - delete_strategy
22209
22886
  type: object
22210
- properties: &ref_510
22887
+ properties: &ref_540
22211
22888
  id:
22212
22889
  type: string
22213
22890
  example: 81df9996-6d2c-4844-86d6-202c08d2837e
@@ -22246,11 +22923,11 @@ paths:
22246
22923
  schema:
22247
22924
  allOf:
22248
22925
  - title: projects-v2.addOwnerrequest
22249
- required: &ref_511
22926
+ required: &ref_541
22250
22927
  - id
22251
22928
  - user_id
22252
22929
  type: object
22253
- properties: &ref_512
22930
+ properties: &ref_542
22254
22931
  id:
22255
22932
  type: string
22256
22933
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22285,11 +22962,11 @@ paths:
22285
22962
  schema:
22286
22963
  allOf:
22287
22964
  - title: projects-v2.removeOwnerrequest
22288
- required: &ref_513
22965
+ required: &ref_543
22289
22966
  - id
22290
22967
  - user_id
22291
22968
  type: object
22292
- properties: &ref_514
22969
+ properties: &ref_544
22293
22970
  id:
22294
22971
  type: string
22295
22972
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22324,11 +23001,11 @@ paths:
22324
23001
  schema:
22325
23002
  allOf:
22326
23003
  - title: projects-v2.assignrequest
22327
- required: &ref_515
23004
+ required: &ref_545
22328
23005
  - id
22329
23006
  - assignee
22330
23007
  type: object
22331
- properties: &ref_516
23008
+ properties: &ref_546
22332
23009
  id:
22333
23010
  type: string
22334
23011
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22380,11 +23057,11 @@ paths:
22380
23057
  schema:
22381
23058
  allOf:
22382
23059
  - title: projects-v2.unassignrequest
22383
- required: &ref_517
23060
+ required: &ref_547
22384
23061
  - id
22385
23062
  - assignee
22386
23063
  type: object
22387
- properties: &ref_518
23064
+ properties: &ref_548
22388
23065
  id:
22389
23066
  type: string
22390
23067
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22436,11 +23113,11 @@ paths:
22436
23113
  schema:
22437
23114
  allOf:
22438
23115
  - title: projects-v2.addCustomerrequest
22439
- required: &ref_519
23116
+ required: &ref_549
22440
23117
  - id
22441
23118
  - customer
22442
23119
  type: object
22443
- properties: &ref_520
23120
+ properties: &ref_550
22444
23121
  id:
22445
23122
  type: string
22446
23123
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22481,11 +23158,11 @@ paths:
22481
23158
  schema:
22482
23159
  allOf:
22483
23160
  - title: projects-v2.removeCustomerrequest
22484
- required: &ref_521
23161
+ required: &ref_551
22485
23162
  - id
22486
23163
  - customer
22487
23164
  type: object
22488
- properties: &ref_522
23165
+ properties: &ref_552
22489
23166
  id:
22490
23167
  type: string
22491
23168
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22526,11 +23203,11 @@ paths:
22526
23203
  schema:
22527
23204
  allOf:
22528
23205
  - title: projects-v2.addDealrequest
22529
- required: &ref_523
23206
+ required: &ref_553
22530
23207
  - id
22531
23208
  - deal_id
22532
23209
  type: object
22533
- properties: &ref_524
23210
+ properties: &ref_554
22534
23211
  id:
22535
23212
  type: string
22536
23213
  example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
@@ -22565,11 +23242,11 @@ paths:
22565
23242
  schema:
22566
23243
  allOf:
22567
23244
  - title: projects-v2.removeDealrequest
22568
- required: &ref_525
23245
+ required: &ref_555
22569
23246
  - id
22570
23247
  - deal_id
22571
23248
  type: object
22572
- properties: &ref_526
23249
+ properties: &ref_556
22573
23250
  id:
22574
23251
  type: string
22575
23252
  example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
@@ -22604,11 +23281,11 @@ paths:
22604
23281
  schema:
22605
23282
  allOf:
22606
23283
  - title: projects-v2.addQuotationrequest
22607
- required: &ref_527
23284
+ required: &ref_557
22608
23285
  - id
22609
23286
  - quotation_id
22610
23287
  type: object
22611
- properties: &ref_528
23288
+ properties: &ref_558
22612
23289
  id:
22613
23290
  type: string
22614
23291
  example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
@@ -22643,11 +23320,11 @@ paths:
22643
23320
  schema:
22644
23321
  allOf:
22645
23322
  - title: projects-v2.removeQuotationrequest
22646
- required: &ref_529
23323
+ required: &ref_559
22647
23324
  - id
22648
23325
  - quotation_id
22649
23326
  type: object
22650
- properties: &ref_530
23327
+ properties: &ref_560
22651
23328
  id:
22652
23329
  type: string
22653
23330
  example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
@@ -22682,11 +23359,11 @@ paths:
22682
23359
  schema:
22683
23360
  allOf:
22684
23361
  - title: projects-v2_externalParties.addToProjectrequest
22685
- required: &ref_531
23362
+ required: &ref_561
22686
23363
  - project_id
22687
23364
  - customer
22688
23365
  type: object
22689
- properties: &ref_532
23366
+ properties: &ref_562
22690
23367
  project_id:
22691
23368
  type: string
22692
23369
  example: 7257b535-d40f-4699-b3bd-63679379b579
@@ -22737,10 +23414,10 @@ paths:
22737
23414
  schema:
22738
23415
  allOf:
22739
23416
  - title: projects-v2_externalParties.updaterequest
22740
- required: &ref_533
23417
+ required: &ref_563
22741
23418
  - id
22742
23419
  type: object
22743
- properties: &ref_534
23420
+ properties: &ref_564
22744
23421
  id:
22745
23422
  type: string
22746
23423
  example: 6126596f-6193-445a-935a-60c10df9f632
@@ -22793,10 +23470,10 @@ paths:
22793
23470
  schema:
22794
23471
  allOf:
22795
23472
  - title: projects-v2_externalParties.deleterequest
22796
- required: &ref_535
23473
+ required: &ref_565
22797
23474
  - id
22798
23475
  type: object
22799
- properties: &ref_536
23476
+ properties: &ref_566
22800
23477
  id:
22801
23478
  type: string
22802
23479
  example: 6126596f-6193-445a-935a-60c10df9f632
@@ -22826,10 +23503,10 @@ paths:
22826
23503
  schema:
22827
23504
  allOf:
22828
23505
  - title: projects-v2_projectLines.listrequest
22829
- required: &ref_537
23506
+ required: &ref_567
22830
23507
  - project_id
22831
23508
  type: object
22832
- properties: &ref_538
23509
+ properties: &ref_568
22833
23510
  project_id:
22834
23511
  type: string
22835
23512
  example: 49b403be-a32e-0901-9b1c-25214f9027c6
@@ -22895,7 +23572,7 @@ paths:
22895
23572
  allOf:
22896
23573
  - title: projects-v2_projectLines.listresponse
22897
23574
  type: object
22898
- properties: &ref_539
23575
+ properties: &ref_569
22899
23576
  data:
22900
23577
  type: array
22901
23578
  items:
@@ -22958,11 +23635,11 @@ paths:
22958
23635
  schema:
22959
23636
  allOf:
22960
23637
  - title: projects-v2_projectLines.addToGrouprequest
22961
- required: &ref_540
23638
+ required: &ref_570
22962
23639
  - line_id
22963
23640
  - group_id
22964
23641
  type: object
22965
- properties: &ref_541
23642
+ properties: &ref_571
22966
23643
  line_id:
22967
23644
  type: string
22968
23645
  description: The ID of the task or material. May not be a group.
@@ -22998,10 +23675,10 @@ paths:
22998
23675
  schema:
22999
23676
  allOf:
23000
23677
  - title: projects-v2_projectLines.removeFromGrouprequest
23001
- required: &ref_542
23678
+ required: &ref_572
23002
23679
  - line_id
23003
23680
  type: object
23004
- properties: &ref_543
23681
+ properties: &ref_573
23005
23682
  line_id:
23006
23683
  type: string
23007
23684
  description: The ID of the task or material. May not be a group.
@@ -23033,7 +23710,7 @@ paths:
23033
23710
  allOf:
23034
23711
  - title: projects-v2_projectGroups.listrequest
23035
23712
  type: object
23036
- properties: &ref_544
23713
+ properties: &ref_574
23037
23714
  filter:
23038
23715
  type: object
23039
23716
  properties:
@@ -23068,7 +23745,7 @@ paths:
23068
23745
  allOf:
23069
23746
  - title: projects-v2_projectGroups.listresponse
23070
23747
  type: object
23071
- properties: &ref_545
23748
+ properties: &ref_575
23072
23749
  data:
23073
23750
  type: array
23074
23751
  items:
@@ -23360,10 +24037,10 @@ paths:
23360
24037
  schema:
23361
24038
  allOf:
23362
24039
  - title: projects-v2_projectGroups.inforequest
23363
- required: &ref_546
24040
+ required: &ref_576
23364
24041
  - id
23365
24042
  type: object
23366
- properties: &ref_547
24043
+ properties: &ref_577
23367
24044
  id:
23368
24045
  type: string
23369
24046
  example: cfe2666c-b0f4-4e85-8d6f-9e1284706d0a
@@ -23382,7 +24059,7 @@ paths:
23382
24059
  allOf:
23383
24060
  - title: projects-v2_projectGroups.inforesponse
23384
24061
  type: object
23385
- properties: &ref_548
24062
+ properties: &ref_578
23386
24063
  data:
23387
24064
  type: object
23388
24065
  properties:
@@ -23673,11 +24350,11 @@ paths:
23673
24350
  schema:
23674
24351
  allOf:
23675
24352
  - title: projects-v2_projectGroups.createrequest
23676
- required: &ref_549
24353
+ required: &ref_579
23677
24354
  - project_id
23678
24355
  - title
23679
24356
  type: object
23680
- properties: &ref_550
24357
+ properties: &ref_580
23681
24358
  project_id:
23682
24359
  type: string
23683
24360
  example: 49b403be-a32e-0901-9b1c-25214f9027c6
@@ -23802,7 +24479,7 @@ paths:
23802
24479
  allOf:
23803
24480
  - title: projects-v2_projectGroups.createresponse
23804
24481
  type: object
23805
- properties: &ref_551
24482
+ properties: &ref_581
23806
24483
  data:
23807
24484
  title: TypeAndId
23808
24485
  type: object
@@ -23831,10 +24508,10 @@ paths:
23831
24508
  schema:
23832
24509
  allOf:
23833
24510
  - title: projects-v2_projectGroups.updaterequest
23834
- required: &ref_552
24511
+ required: &ref_582
23835
24512
  - id
23836
24513
  type: object
23837
- properties: &ref_553
24514
+ properties: &ref_583
23838
24515
  id:
23839
24516
  type: string
23840
24517
  example: e8478f2c-05a1-4e69-b3c4-e08507640f01
@@ -23964,10 +24641,10 @@ paths:
23964
24641
  schema:
23965
24642
  allOf:
23966
24643
  - title: projects-v2_projectGroups.duplicaterequest
23967
- required: &ref_554
24644
+ required: &ref_584
23968
24645
  - origin_id
23969
24646
  type: object
23970
- properties: &ref_555
24647
+ properties: &ref_585
23971
24648
  origin_id:
23972
24649
  type: string
23973
24650
  description: The id of the group that is being duplicated
@@ -23987,7 +24664,7 @@ paths:
23987
24664
  allOf:
23988
24665
  - title: projects-v2_projectGroups.duplicateresponse
23989
24666
  type: object
23990
- properties: &ref_556
24667
+ properties: &ref_586
23991
24668
  data:
23992
24669
  title: TypeAndId
23993
24670
  type: object
@@ -24016,11 +24693,11 @@ paths:
24016
24693
  schema:
24017
24694
  allOf:
24018
24695
  - title: projects-v2_projectGroups.deleterequest
24019
- required: &ref_557
24696
+ required: &ref_587
24020
24697
  - id
24021
24698
  - delete_strategy
24022
24699
  type: object
24023
- properties: &ref_558
24700
+ properties: &ref_588
24024
24701
  id:
24025
24702
  type: string
24026
24703
  example: 01866e6f-f264-7fe5-8b7c-a3f739fa292c
@@ -24059,11 +24736,11 @@ paths:
24059
24736
  schema:
24060
24737
  allOf:
24061
24738
  - title: projects-v2_projectGroups.assignrequest
24062
- required: &ref_559
24739
+ required: &ref_589
24063
24740
  - id
24064
24741
  - assignee
24065
24742
  type: object
24066
- properties: &ref_560
24743
+ properties: &ref_590
24067
24744
  id:
24068
24745
  type: string
24069
24746
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -24115,11 +24792,11 @@ paths:
24115
24792
  schema:
24116
24793
  allOf:
24117
24794
  - title: projects-v2_projectGroups.unassignrequest
24118
- required: &ref_561
24795
+ required: &ref_591
24119
24796
  - id
24120
24797
  - assignee
24121
24798
  type: object
24122
- properties: &ref_562
24799
+ properties: &ref_592
24123
24800
  id:
24124
24801
  type: string
24125
24802
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -24172,7 +24849,7 @@ paths:
24172
24849
  allOf:
24173
24850
  - title: projects-v2_tasks.listrequest
24174
24851
  type: object
24175
- properties: &ref_563
24852
+ properties: &ref_593
24176
24853
  filter:
24177
24854
  type: object
24178
24855
  properties:
@@ -24211,7 +24888,7 @@ paths:
24211
24888
  allOf:
24212
24889
  - title: projects-v2_tasks.listresponse
24213
24890
  type: object
24214
- properties: &ref_564
24891
+ properties: &ref_594
24215
24892
  data:
24216
24893
  type: array
24217
24894
  items:
@@ -24600,7 +25277,7 @@ paths:
24600
25277
  allOf:
24601
25278
  - title: projects-v2_tasks.inforesponse
24602
25279
  type: object
24603
- properties: &ref_565
25280
+ properties: &ref_595
24604
25281
  data:
24605
25282
  type: object
24606
25283
  properties:
@@ -24987,11 +25664,11 @@ paths:
24987
25664
  schema:
24988
25665
  allOf:
24989
25666
  - title: projects-v2_tasks.createrequest
24990
- required: &ref_566
25667
+ required: &ref_596
24991
25668
  - project_id
24992
25669
  - title
24993
25670
  type: object
24994
- properties: &ref_567
25671
+ properties: &ref_597
24995
25672
  project_id:
24996
25673
  type: string
24997
25674
  example: 49b403be-a32e-0901-9b1c-25214f9027c6
@@ -25195,10 +25872,10 @@ paths:
25195
25872
  schema:
25196
25873
  allOf:
25197
25874
  - title: projects-v2_tasks.updaterequest
25198
- required: &ref_568
25875
+ required: &ref_598
25199
25876
  - id
25200
25877
  type: object
25201
- properties: &ref_569
25878
+ properties: &ref_599
25202
25879
  id:
25203
25880
  type: string
25204
25881
  example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
@@ -25370,10 +26047,10 @@ paths:
25370
26047
  schema:
25371
26048
  allOf:
25372
26049
  - title: projects-v2_tasks.duplicaterequest
25373
- required: &ref_570
26050
+ required: &ref_600
25374
26051
  - origin_id
25375
26052
  type: object
25376
- properties: &ref_571
26053
+ properties: &ref_601
25377
26054
  origin_id:
25378
26055
  type: string
25379
26056
  description: The id of the task that is being duplicated
@@ -25393,7 +26070,7 @@ paths:
25393
26070
  allOf:
25394
26071
  - title: projects-v2_tasks.duplicateresponse
25395
26072
  type: object
25396
- properties: &ref_572
26073
+ properties: &ref_602
25397
26074
  data:
25398
26075
  title: TypeAndId
25399
26076
  type: object
@@ -25422,11 +26099,11 @@ paths:
25422
26099
  schema:
25423
26100
  allOf:
25424
26101
  - title: projects-v2_tasks.deleterequest
25425
- required: &ref_573
26102
+ required: &ref_603
25426
26103
  - id
25427
26104
  - delete_strategy
25428
26105
  type: object
25429
- properties: &ref_574
26106
+ properties: &ref_604
25430
26107
  id:
25431
26108
  type: string
25432
26109
  example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
@@ -25464,11 +26141,11 @@ paths:
25464
26141
  schema:
25465
26142
  allOf:
25466
26143
  - title: projects-v2_tasks.assignrequest
25467
- required: &ref_575
26144
+ required: &ref_605
25468
26145
  - id
25469
26146
  - assignee
25470
26147
  type: object
25471
- properties: &ref_576
26148
+ properties: &ref_606
25472
26149
  id:
25473
26150
  type: string
25474
26151
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -25520,11 +26197,11 @@ paths:
25520
26197
  schema:
25521
26198
  allOf:
25522
26199
  - title: projects-v2_tasks.unassignrequest
25523
- required: &ref_577
26200
+ required: &ref_607
25524
26201
  - id
25525
26202
  - assignee
25526
26203
  type: object
25527
- properties: &ref_578
26204
+ properties: &ref_608
25528
26205
  id:
25529
26206
  type: string
25530
26207
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -25577,7 +26254,7 @@ paths:
25577
26254
  allOf:
25578
26255
  - title: projects-v2_materials.listrequest
25579
26256
  type: object
25580
- properties: &ref_579
26257
+ properties: &ref_609
25581
26258
  filter:
25582
26259
  type: object
25583
26260
  properties:
@@ -25606,7 +26283,7 @@ paths:
25606
26283
  allOf:
25607
26284
  - title: projects-v2_materials.listresponse
25608
26285
  type: object
25609
- properties: &ref_580
26286
+ properties: &ref_610
25610
26287
  data:
25611
26288
  type: array
25612
26289
  items:
@@ -25920,10 +26597,10 @@ paths:
25920
26597
  schema:
25921
26598
  allOf:
25922
26599
  - title: projects-v2_materials.inforequest
25923
- required: &ref_581
26600
+ required: &ref_611
25924
26601
  - id
25925
26602
  type: object
25926
- properties: &ref_582
26603
+ properties: &ref_612
25927
26604
  id:
25928
26605
  type: string
25929
26606
  example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
@@ -25942,7 +26619,7 @@ paths:
25942
26619
  allOf:
25943
26620
  - title: projects-v2_materials.inforesponse
25944
26621
  type: object
25945
- properties: &ref_583
26622
+ properties: &ref_613
25946
26623
  data:
25947
26624
  type: object
25948
26625
  properties:
@@ -26260,11 +26937,11 @@ paths:
26260
26937
  schema:
26261
26938
  allOf:
26262
26939
  - title: projects-v2_materials.createrequest
26263
- required: &ref_584
26940
+ required: &ref_614
26264
26941
  - project_id
26265
26942
  - title
26266
26943
  type: object
26267
- properties: &ref_585
26944
+ properties: &ref_615
26268
26945
  project_id:
26269
26946
  type: string
26270
26947
  example: 49b403be-a32e-0901-9b1c-25214f9027c6
@@ -26432,7 +27109,7 @@ paths:
26432
27109
  allOf:
26433
27110
  - title: projects-v2_materials.createresponse
26434
27111
  type: object
26435
- properties: &ref_586
27112
+ properties: &ref_616
26436
27113
  data:
26437
27114
  title: TypeAndId
26438
27115
  type: object
@@ -26461,10 +27138,10 @@ paths:
26461
27138
  schema:
26462
27139
  allOf:
26463
27140
  - title: projects-v2_materials.updaterequest
26464
- required: &ref_587
27141
+ required: &ref_617
26465
27142
  - id
26466
27143
  type: object
26467
- properties: &ref_588
27144
+ properties: &ref_618
26468
27145
  id:
26469
27146
  type: string
26470
27147
  example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
@@ -26618,10 +27295,10 @@ paths:
26618
27295
  schema:
26619
27296
  allOf:
26620
27297
  - title: projects-v2_materials.duplicaterequest
26621
- required: &ref_589
27298
+ required: &ref_619
26622
27299
  - origin_id
26623
27300
  type: object
26624
- properties: &ref_590
27301
+ properties: &ref_620
26625
27302
  origin_id:
26626
27303
  type: string
26627
27304
  description: The id of the material that is being duplicated
@@ -26641,7 +27318,7 @@ paths:
26641
27318
  allOf:
26642
27319
  - title: projects-v2_materials.duplicateresponse
26643
27320
  type: object
26644
- properties: &ref_591
27321
+ properties: &ref_621
26645
27322
  data:
26646
27323
  title: TypeAndId
26647
27324
  type: object
@@ -26670,10 +27347,10 @@ paths:
26670
27347
  schema:
26671
27348
  allOf:
26672
27349
  - title: projects-v2_materials.deleterequest
26673
- required: &ref_592
27350
+ required: &ref_622
26674
27351
  - id
26675
27352
  type: object
26676
- properties: &ref_593
27353
+ properties: &ref_623
26677
27354
  id:
26678
27355
  type: string
26679
27356
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -26703,11 +27380,11 @@ paths:
26703
27380
  schema:
26704
27381
  allOf:
26705
27382
  - title: projects-v2_materials.assignrequest
26706
- required: &ref_594
27383
+ required: &ref_624
26707
27384
  - id
26708
27385
  - assignee
26709
27386
  type: object
26710
- properties: &ref_595
27387
+ properties: &ref_625
26711
27388
  id:
26712
27389
  type: string
26713
27390
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -26759,11 +27436,11 @@ paths:
26759
27436
  schema:
26760
27437
  allOf:
26761
27438
  - title: projects-v2_materials.unassignrequest
26762
- required: &ref_596
27439
+ required: &ref_626
26763
27440
  - id
26764
27441
  - assignee
26765
27442
  type: object
26766
- properties: &ref_597
27443
+ properties: &ref_627
26767
27444
  id:
26768
27445
  type: string
26769
27446
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -26816,7 +27493,7 @@ paths:
26816
27493
  allOf:
26817
27494
  - title: tasks.listrequest1
26818
27495
  type: object
26819
- properties: &ref_598
27496
+ properties: &ref_628
26820
27497
  filter:
26821
27498
  type: object
26822
27499
  properties:
@@ -26884,7 +27561,7 @@ paths:
26884
27561
  allOf:
26885
27562
  - title: tasks.listresponse1
26886
27563
  type: object
26887
- properties: &ref_599
27564
+ properties: &ref_629
26888
27565
  data:
26889
27566
  type: array
26890
27567
  items:
@@ -27091,7 +27768,7 @@ paths:
27091
27768
  allOf:
27092
27769
  - title: tasks.inforesponse1
27093
27770
  type: object
27094
- properties: &ref_600
27771
+ properties: &ref_630
27095
27772
  data:
27096
27773
  type: object
27097
27774
  properties:
@@ -27283,12 +27960,12 @@ paths:
27283
27960
  application/json:
27284
27961
  schema:
27285
27962
  title: tasks.createrequest1
27286
- required: &ref_601
27963
+ required: &ref_631
27287
27964
  - title
27288
27965
  - due_on
27289
27966
  - work_type_id
27290
27967
  type: object
27291
- properties: &ref_602
27968
+ properties: &ref_632
27292
27969
  title:
27293
27970
  type: string
27294
27971
  description:
@@ -27380,10 +28057,10 @@ paths:
27380
28057
  application/json:
27381
28058
  schema:
27382
28059
  title: tasks.updaterequest1
27383
- required: &ref_603
28060
+ required: &ref_633
27384
28061
  - id
27385
28062
  type: object
27386
- properties: &ref_604
28063
+ properties: &ref_634
27387
28064
  id:
27388
28065
  type: string
27389
28066
  example: 00ed6266-a5bd-4aac-a292-2582017b6400
@@ -27469,10 +28146,10 @@ paths:
27469
28146
  schema:
27470
28147
  allOf:
27471
28148
  - title: tasks.completerequest
27472
- required: &ref_605
28149
+ required: &ref_635
27473
28150
  - id
27474
28151
  type: object
27475
- properties: &ref_606
28152
+ properties: &ref_636
27476
28153
  id:
27477
28154
  type: string
27478
28155
  example: 46156648-87c6-478d-8aa7-1dc3a00dacab
@@ -27502,10 +28179,10 @@ paths:
27502
28179
  schema:
27503
28180
  allOf:
27504
28181
  - title: tasks.reopenrequest
27505
- required: &ref_607
28182
+ required: &ref_637
27506
28183
  - id
27507
28184
  type: object
27508
- properties: &ref_608
28185
+ properties: &ref_638
27509
28186
  id:
27510
28187
  type: string
27511
28188
  example: 46156648-87c6-478d-8aa7-1dc3a00dacab
@@ -27535,10 +28212,10 @@ paths:
27535
28212
  schema:
27536
28213
  allOf:
27537
28214
  - title: tasks.deleterequest1
27538
- required: &ref_609
28215
+ required: &ref_639
27539
28216
  - id
27540
28217
  type: object
27541
- properties: &ref_610
28218
+ properties: &ref_640
27542
28219
  id:
27543
28220
  type: string
27544
28221
  example: 5f0afd8a-8a40-48a4-bbe6-7d0e9c61bb6d
@@ -27568,12 +28245,12 @@ paths:
27568
28245
  schema:
27569
28246
  allOf:
27570
28247
  - title: tasks.schedulerequest
27571
- required: &ref_611
28248
+ required: &ref_641
27572
28249
  - id
27573
28250
  - starts_at
27574
28251
  - ends_at
27575
28252
  type: object
27576
- properties: &ref_612
28253
+ properties: &ref_642
27577
28254
  id:
27578
28255
  type: string
27579
28256
  example: 7c70c54e-6e50-4e6a-b5fd-80234eb535cf
@@ -27602,7 +28279,7 @@ paths:
27602
28279
  allOf:
27603
28280
  - title: tasks.scheduleresponse
27604
28281
  type: object
27605
- properties: &ref_613
28282
+ properties: &ref_643
27606
28283
  data:
27607
28284
  title: TypeAndId
27608
28285
  type: object
@@ -27632,7 +28309,7 @@ paths:
27632
28309
  allOf:
27633
28310
  - title: timeTracking.listrequest
27634
28311
  type: object
27635
- properties: &ref_614
28312
+ properties: &ref_644
27636
28313
  filter:
27637
28314
  type: object
27638
28315
  properties:
@@ -27738,7 +28415,7 @@ paths:
27738
28415
  allOf:
27739
28416
  - title: timeTracking.listresponse
27740
28417
  type: object
27741
- properties: &ref_615
28418
+ properties: &ref_645
27742
28419
  data:
27743
28420
  type: array
27744
28421
  items:
@@ -27956,10 +28633,10 @@ paths:
27956
28633
  schema:
27957
28634
  allOf:
27958
28635
  - title: timeTracking.inforequest
27959
- required: &ref_616
28636
+ required: &ref_646
27960
28637
  - id
27961
28638
  type: object
27962
- properties: &ref_617
28639
+ properties: &ref_647
27963
28640
  id:
27964
28641
  type: string
27965
28642
  example: 6caeea11-aa83-4da9-9859-5b62bbf3a476
@@ -27984,7 +28661,7 @@ paths:
27984
28661
  allOf:
27985
28662
  - title: timeTracking.inforesponse
27986
28663
  type: object
27987
- properties: &ref_618
28664
+ properties: &ref_648
27988
28665
  data:
27989
28666
  type: object
27990
28667
  properties:
@@ -28181,7 +28858,7 @@ paths:
28181
28858
  allOf:
28182
28859
  - title: timeTracking.addrequest
28183
28860
  type: object
28184
- properties: &ref_619
28861
+ properties: &ref_649
28185
28862
  work_type_id:
28186
28863
  type: string
28187
28864
  example: 2175597d-484e-4a1c-a781-cbc3d9f893ba
@@ -28213,7 +28890,7 @@ paths:
28213
28890
  type: string
28214
28891
  description: To add tracked time for a different user.
28215
28892
  example: 87982c96-f2fe-4b05-838c-ff42c0525758
28216
- oneOf: &ref_620
28893
+ oneOf: &ref_650
28217
28894
  - type: object
28218
28895
  title: With started_at & duration
28219
28896
  required:
@@ -28265,7 +28942,7 @@ paths:
28265
28942
  allOf:
28266
28943
  - title: timeTracking.addresponse
28267
28944
  type: object
28268
- properties: &ref_621
28945
+ properties: &ref_651
28269
28946
  data:
28270
28947
  title: TypeAndId
28271
28948
  type: object
@@ -28291,11 +28968,11 @@ paths:
28291
28968
  schema:
28292
28969
  allOf:
28293
28970
  - title: timeTracking.updaterequest
28294
- required: &ref_622
28971
+ required: &ref_652
28295
28972
  - id
28296
28973
  - duration
28297
28974
  type: object
28298
- properties: &ref_623
28975
+ properties: &ref_653
28299
28976
  id:
28300
28977
  type: string
28301
28978
  example: 66621f54-3d0d-420f-8d4b-ddd7fc473bf2
@@ -28333,7 +29010,7 @@ paths:
28333
29010
  invoiceable:
28334
29011
  type: boolean
28335
29012
  example: true
28336
- oneOf: &ref_624
29013
+ oneOf: &ref_654
28337
29014
  - type: object
28338
29015
  title: Update with started_at
28339
29016
  description: Update the timetracking with `started_at` DateTime.
@@ -28376,10 +29053,10 @@ paths:
28376
29053
  schema:
28377
29054
  allOf:
28378
29055
  - title: timeTracking.resumerequest
28379
- required: &ref_625
29056
+ required: &ref_655
28380
29057
  - id
28381
29058
  type: object
28382
- properties: &ref_626
29059
+ properties: &ref_656
28383
29060
  id:
28384
29061
  type: string
28385
29062
  example: 06dfa08a-b769-4005-a912-45ab885c5737
@@ -28404,7 +29081,7 @@ paths:
28404
29081
  allOf:
28405
29082
  - title: timeTracking.resumeresponse
28406
29083
  type: object
28407
- properties: &ref_627
29084
+ properties: &ref_657
28408
29085
  data:
28409
29086
  title: TypeAndId
28410
29087
  type: object
@@ -28433,10 +29110,10 @@ paths:
28433
29110
  schema:
28434
29111
  allOf:
28435
29112
  - title: timeTracking.deleterequest
28436
- required: &ref_628
29113
+ required: &ref_658
28437
29114
  - id
28438
29115
  type: object
28439
- properties: &ref_629
29116
+ properties: &ref_659
28440
29117
  id:
28441
29118
  type: string
28442
29119
  example: 6caeea11-aa83-4da9-9859-5b62bbf3a476
@@ -28469,7 +29146,7 @@ paths:
28469
29146
  allOf:
28470
29147
  - title: timers.currentresponse
28471
29148
  type: object
28472
- properties: &ref_630
29149
+ properties: &ref_660
28473
29150
  data:
28474
29151
  type: object
28475
29152
  properties:
@@ -28555,7 +29232,7 @@ paths:
28555
29232
  allOf:
28556
29233
  - title: timers.startrequest
28557
29234
  type: object
28558
- properties: &ref_631
29235
+ properties: &ref_661
28559
29236
  work_type_id:
28560
29237
  type: string
28561
29238
  example: db41328a-7a25-4e85-8fb9-830baacb7f40
@@ -28611,7 +29288,7 @@ paths:
28611
29288
  allOf:
28612
29289
  - title: timers.startresponse
28613
29290
  type: object
28614
- properties: &ref_632
29291
+ properties: &ref_662
28615
29292
  data:
28616
29293
  title: TypeAndId
28617
29294
  type: object
@@ -28643,7 +29320,7 @@ paths:
28643
29320
  allOf:
28644
29321
  - title: timers.stopresponse
28645
29322
  type: object
28646
- properties: &ref_633
29323
+ properties: &ref_663
28647
29324
  data:
28648
29325
  title: TypeAndId
28649
29326
  type: object
@@ -28673,7 +29350,7 @@ paths:
28673
29350
  allOf:
28674
29351
  - title: timers.updaterequest
28675
29352
  type: object
28676
- properties: &ref_634
29353
+ properties: &ref_664
28677
29354
  work_type_id:
28678
29355
  type: string
28679
29356
  nullable: true
@@ -28747,7 +29424,7 @@ paths:
28747
29424
  allOf:
28748
29425
  - title: tickets.listrequest
28749
29426
  type: object
28750
- properties: &ref_635
29427
+ properties: &ref_665
28751
29428
  filter:
28752
29429
  type: object
28753
29430
  properties:
@@ -28832,7 +29509,7 @@ paths:
28832
29509
  allOf:
28833
29510
  - title: tickets.listresponse
28834
29511
  type: object
28835
- properties: &ref_636
29512
+ properties: &ref_666
28836
29513
  data:
28837
29514
  type: array
28838
29515
  items:
@@ -28967,10 +29644,10 @@ paths:
28967
29644
  schema:
28968
29645
  allOf:
28969
29646
  - title: tickets.inforequest
28970
- required: &ref_637
29647
+ required: &ref_667
28971
29648
  - id
28972
29649
  type: object
28973
- properties: &ref_638
29650
+ properties: &ref_668
28974
29651
  id:
28975
29652
  type: string
28976
29653
  example: 6fac0bf0-e803-424e-af67-76863a3d7d16
@@ -28989,7 +29666,7 @@ paths:
28989
29666
  allOf:
28990
29667
  - title: tickets.inforesponse
28991
29668
  type: object
28992
- properties: &ref_639
29669
+ properties: &ref_669
28993
29670
  id:
28994
29671
  type: string
28995
29672
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29138,12 +29815,12 @@ paths:
29138
29815
  schema:
29139
29816
  allOf:
29140
29817
  - title: tickets.createrequest
29141
- required: &ref_640
29818
+ required: &ref_670
29142
29819
  - subject
29143
29820
  - customer
29144
29821
  - ticket_status_id
29145
29822
  type: object
29146
- properties: &ref_641
29823
+ properties: &ref_671
29147
29824
  subject:
29148
29825
  type: string
29149
29826
  example: My ticket subject
@@ -29257,7 +29934,7 @@ paths:
29257
29934
  allOf:
29258
29935
  - title: tickets.createresponse
29259
29936
  type: object
29260
- properties: &ref_642
29937
+ properties: &ref_672
29261
29938
  data:
29262
29939
  title: TypeAndId
29263
29940
  type: object
@@ -29286,10 +29963,10 @@ paths:
29286
29963
  schema:
29287
29964
  allOf:
29288
29965
  - title: tickets.updaterequest
29289
- required: &ref_643
29966
+ required: &ref_673
29290
29967
  - id
29291
29968
  type: object
29292
- properties: &ref_644
29969
+ properties: &ref_674
29293
29970
  id:
29294
29971
  type: string
29295
29972
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29411,7 +30088,7 @@ paths:
29411
30088
  allOf:
29412
30089
  - title: tickets.listMessagesrequest
29413
30090
  type: object
29414
- properties: &ref_645
30091
+ properties: &ref_675
29415
30092
  id:
29416
30093
  type: string
29417
30094
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29464,7 +30141,7 @@ paths:
29464
30141
  allOf:
29465
30142
  - title: tickets.listMessagesresponse
29466
30143
  type: object
29467
- properties: &ref_646
30144
+ properties: &ref_676
29468
30145
  data:
29469
30146
  type: array
29470
30147
  items:
@@ -29567,7 +30244,7 @@ paths:
29567
30244
  allOf:
29568
30245
  - title: tickets.getMessagerequest
29569
30246
  type: object
29570
- properties: &ref_647
30247
+ properties: &ref_677
29571
30248
  message_id:
29572
30249
  type: string
29573
30250
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29586,7 +30263,7 @@ paths:
29586
30263
  allOf:
29587
30264
  - title: tickets.getMessageresponse
29588
30265
  type: object
29589
- properties: &ref_648
30266
+ properties: &ref_678
29590
30267
  message_id:
29591
30268
  type: string
29592
30269
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29669,13 +30346,13 @@ paths:
29669
30346
  schema:
29670
30347
  allOf:
29671
30348
  - title: tickets.importMessagerequest
29672
- required: &ref_649
30349
+ required: &ref_679
29673
30350
  - id
29674
30351
  - body
29675
30352
  - sent_by
29676
30353
  - sent_at
29677
30354
  type: object
29678
- properties: &ref_650
30355
+ properties: &ref_680
29679
30356
  id:
29680
30357
  type: string
29681
30358
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29728,7 +30405,7 @@ paths:
29728
30405
  allOf:
29729
30406
  - title: tickets.importMessageresponse
29730
30407
  type: object
29731
- properties: &ref_651
30408
+ properties: &ref_681
29732
30409
  data:
29733
30410
  title: TypeAndId
29734
30411
  type: object
@@ -29757,11 +30434,11 @@ paths:
29757
30434
  schema:
29758
30435
  allOf:
29759
30436
  - title: tickets.addReplyrequest
29760
- required: &ref_652
30437
+ required: &ref_682
29761
30438
  - id
29762
30439
  - body
29763
30440
  type: object
29764
- properties: &ref_653
30441
+ properties: &ref_683
29765
30442
  id:
29766
30443
  type: string
29767
30444
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29800,7 +30477,7 @@ paths:
29800
30477
  allOf:
29801
30478
  - title: tickets.addReplyresponse
29802
30479
  type: object
29803
- properties: &ref_654
30480
+ properties: &ref_684
29804
30481
  data:
29805
30482
  title: TypeAndId
29806
30483
  type: object
@@ -29829,11 +30506,11 @@ paths:
29829
30506
  schema:
29830
30507
  allOf:
29831
30508
  - title: tickets.addInternalMessagerequest
29832
- required: &ref_655
30509
+ required: &ref_685
29833
30510
  - id
29834
30511
  - body
29835
30512
  type: object
29836
- properties: &ref_656
30513
+ properties: &ref_686
29837
30514
  id:
29838
30515
  type: string
29839
30516
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29872,7 +30549,7 @@ paths:
29872
30549
  allOf:
29873
30550
  - title: tickets.addInternalMessageresponse
29874
30551
  type: object
29875
- properties: &ref_657
30552
+ properties: &ref_687
29876
30553
  data:
29877
30554
  title: TypeAndId
29878
30555
  type: object
@@ -29902,7 +30579,7 @@ paths:
29902
30579
  allOf:
29903
30580
  - title: ticketStatus.listrequest
29904
30581
  type: object
29905
- properties: &ref_658
30582
+ properties: &ref_688
29906
30583
  filter:
29907
30584
  type: object
29908
30585
  properties:
@@ -29931,7 +30608,7 @@ paths:
29931
30608
  allOf:
29932
30609
  - title: ticketStatus.listresponse
29933
30610
  type: object
29934
- properties: &ref_659
30611
+ properties: &ref_689
29935
30612
  data:
29936
30613
  type: array
29937
30614
  items:
@@ -29981,10 +30658,10 @@ paths:
29981
30658
  schema:
29982
30659
  allOf:
29983
30660
  - title: files.listrequest
29984
- required: &ref_660
30661
+ required: &ref_690
29985
30662
  - filter
29986
30663
  type: object
29987
- properties: &ref_661
30664
+ properties: &ref_691
29988
30665
  filter:
29989
30666
  type: object
29990
30667
  required:
@@ -30066,7 +30743,7 @@ paths:
30066
30743
  allOf:
30067
30744
  - title: files.listresponse
30068
30745
  type: object
30069
- properties: &ref_662
30746
+ properties: &ref_692
30070
30747
  data:
30071
30748
  type: array
30072
30749
  items:
@@ -30187,10 +30864,10 @@ paths:
30187
30864
  schema:
30188
30865
  allOf:
30189
30866
  - title: files.inforequest
30190
- required: &ref_663
30867
+ required: &ref_693
30191
30868
  - id
30192
30869
  type: object
30193
- properties: &ref_664
30870
+ properties: &ref_694
30194
30871
  id:
30195
30872
  type: string
30196
30873
  example: 6fac0bf0-e803-424e-af67-76863a3d7d16
@@ -30209,7 +30886,7 @@ paths:
30209
30886
  allOf:
30210
30887
  - title: files.inforesponse
30211
30888
  type: object
30212
- properties: &ref_665
30889
+ properties: &ref_695
30213
30890
  data:
30214
30891
  type: object
30215
30892
  properties:
@@ -30308,10 +30985,10 @@ paths:
30308
30985
  schema:
30309
30986
  allOf:
30310
30987
  - title: files.downloadrequest
30311
- required: &ref_666
30988
+ required: &ref_696
30312
30989
  - id
30313
30990
  type: object
30314
- properties: &ref_667
30991
+ properties: &ref_697
30315
30992
  id:
30316
30993
  type: string
30317
30994
  example: 4afb0a9c-91c6-49ed-a2e5-ce7c1e3a87fb
@@ -30330,7 +31007,7 @@ paths:
30330
31007
  allOf:
30331
31008
  - title: files.downloadresponse
30332
31009
  type: object
30333
- properties: &ref_668
31010
+ properties: &ref_698
30334
31011
  data:
30335
31012
  type: object
30336
31013
  properties:
@@ -30372,11 +31049,11 @@ paths:
30372
31049
  schema:
30373
31050
  allOf:
30374
31051
  - title: files.uploadrequest
30375
- required: &ref_669
31052
+ required: &ref_699
30376
31053
  - name
30377
31054
  - subject
30378
31055
  type: object
30379
- properties: &ref_670
31056
+ properties: &ref_700
30380
31057
  name:
30381
31058
  type: string
30382
31059
  description: Name under which the file will be stored. This name should contain the same extension as the file that the user wants to upload.
@@ -30431,7 +31108,7 @@ paths:
30431
31108
  allOf:
30432
31109
  - title: files.uploadresponse
30433
31110
  type: object
30434
- properties: &ref_671
31111
+ properties: &ref_701
30435
31112
  data:
30436
31113
  type: object
30437
31114
  properties:
@@ -30467,10 +31144,10 @@ paths:
30467
31144
  schema:
30468
31145
  allOf:
30469
31146
  - title: files.deleterequest
30470
- required: &ref_672
31147
+ required: &ref_702
30471
31148
  - id
30472
31149
  type: object
30473
- properties: &ref_673
31150
+ properties: &ref_703
30474
31151
  id:
30475
31152
  type: string
30476
31153
  example: 4afb0a9c-91c6-49ed-a2e5-ce7c1e3a87fb
@@ -30500,10 +31177,10 @@ paths:
30500
31177
  schema:
30501
31178
  allOf:
30502
31179
  - title: mailTemplates.listrequest
30503
- required: &ref_674
31180
+ required: &ref_704
30504
31181
  - filter
30505
31182
  type: object
30506
- properties: &ref_675
31183
+ properties: &ref_705
30507
31184
  filter:
30508
31185
  type: object
30509
31186
  required:
@@ -30539,7 +31216,7 @@ paths:
30539
31216
  allOf:
30540
31217
  - title: mailTemplates.listresponse
30541
31218
  type: object
30542
- properties: &ref_676
31219
+ properties: &ref_706
30543
31220
  data:
30544
31221
  type: array
30545
31222
  items:
@@ -30620,7 +31297,7 @@ paths:
30620
31297
  allOf:
30621
31298
  - title: migrate.idrequest
30622
31299
  type: object
30623
- properties: &ref_677
31300
+ properties: &ref_707
30624
31301
  type:
30625
31302
  type: string
30626
31303
  enum:
@@ -30665,7 +31342,7 @@ paths:
30665
31342
  allOf:
30666
31343
  - title: migrate.idresponse
30667
31344
  type: object
30668
- properties: &ref_678
31345
+ properties: &ref_708
30669
31346
  data:
30670
31347
  type: object
30671
31348
  properties:
@@ -30720,7 +31397,7 @@ paths:
30720
31397
  allOf:
30721
31398
  - title: migrate.taxRaterequest
30722
31399
  type: object
30723
- properties: &ref_679
31400
+ properties: &ref_709
30724
31401
  department_id:
30725
31402
  type: string
30726
31403
  example: 6ad54ec6-ee2d-4500-afe6-0917c1aa7a38
@@ -30744,7 +31421,7 @@ paths:
30744
31421
  allOf:
30745
31422
  - title: migrate.taxRateresponse
30746
31423
  type: object
30747
- properties: &ref_680
31424
+ properties: &ref_710
30748
31425
  data:
30749
31426
  title: TypeAndId
30750
31427
  type: object
@@ -30774,7 +31451,7 @@ paths:
30774
31451
  allOf:
30775
31452
  - title: migrate.activityTyperequest
30776
31453
  type: object
30777
- properties: &ref_681
31454
+ properties: &ref_711
30778
31455
  type:
30779
31456
  type: string
30780
31457
  enum:
@@ -30797,7 +31474,7 @@ paths:
30797
31474
  allOf:
30798
31475
  - title: migrate.activityTyperesponse
30799
31476
  type: object
30800
- properties: &ref_682
31477
+ properties: &ref_712
30801
31478
  data:
30802
31479
  title: TypeAndId
30803
31480
  type: object
@@ -30825,10 +31502,10 @@ paths:
30825
31502
  application/json:
30826
31503
  schema:
30827
31504
  title: orders.inforequest
30828
- required: &ref_683
31505
+ required: &ref_713
30829
31506
  - id
30830
31507
  type: object
30831
- properties: &ref_684
31508
+ properties: &ref_714
30832
31509
  id:
30833
31510
  type: string
30834
31511
  example: 6fac0bf0-e803-424e-af67-76863a3d7d16
@@ -30849,7 +31526,7 @@ paths:
30849
31526
  allOf:
30850
31527
  - title: orders.inforesponse
30851
31528
  type: object
30852
- properties: &ref_686
31529
+ properties: &ref_716
30853
31530
  data:
30854
31531
  type: object
30855
31532
  properties:
@@ -30879,7 +31556,7 @@ paths:
30879
31556
  items:
30880
31557
  title: OrdersGroupedLinesResponse
30881
31558
  type: object
30882
- properties: &ref_685
31559
+ properties: &ref_715
30883
31560
  section:
30884
31561
  type: object
30885
31562
  properties:
@@ -31063,7 +31740,7 @@ paths:
31063
31740
  allOf:
31064
31741
  - title: orders.listrequest
31065
31742
  type: object
31066
- properties: &ref_687
31743
+ properties: &ref_717
31067
31744
  filter:
31068
31745
  type: object
31069
31746
  properties:
@@ -31097,7 +31774,7 @@ paths:
31097
31774
  schema:
31098
31775
  title: orders.listresponse
31099
31776
  type: object
31100
- properties: &ref_688
31777
+ properties: &ref_718
31101
31778
  data:
31102
31779
  type: array
31103
31780
  items:
@@ -31419,7 +32096,7 @@ paths:
31419
32096
  schema:
31420
32097
  title: webhooks.listresponse
31421
32098
  type: object
31422
- properties: &ref_689
32099
+ properties: &ref_719
31423
32100
  data:
31424
32101
  type: array
31425
32102
  items:
@@ -31468,11 +32145,11 @@ paths:
31468
32145
  schema:
31469
32146
  allOf:
31470
32147
  - title: cloudPlatforms.urlrequest
31471
- required: &ref_690
32148
+ required: &ref_720
31472
32149
  - type
31473
32150
  - id
31474
32151
  type: object
31475
- properties: &ref_691
32152
+ properties: &ref_721
31476
32153
  type:
31477
32154
  type: string
31478
32155
  enum:
@@ -31499,7 +32176,7 @@ paths:
31499
32176
  allOf:
31500
32177
  - title: cloudPlatforms.urlresponse
31501
32178
  type: object
31502
- properties: &ref_692
32179
+ properties: &ref_722
31503
32180
  data:
31504
32181
  type: object
31505
32182
  properties:
@@ -31541,7 +32218,7 @@ paths:
31541
32218
  allOf:
31542
32219
  - title: accounts.projects-v2-statusresponse
31543
32220
  type: object
31544
- properties: &ref_693
32221
+ properties: &ref_723
31545
32222
  data:
31546
32223
  type: object
31547
32224
  properties:
@@ -31580,7 +32257,7 @@ paths:
31580
32257
  allOf:
31581
32258
  - title: plannableItems.listrequest
31582
32259
  type: object
31583
- properties: &ref_694
32260
+ properties: &ref_724
31584
32261
  filter:
31585
32262
  type: object
31586
32263
  properties:
@@ -31691,7 +32368,7 @@ paths:
31691
32368
  allOf:
31692
32369
  - title: plannableItems.listresponse
31693
32370
  type: object
31694
- properties: &ref_695
32371
+ properties: &ref_725
31695
32372
  data:
31696
32373
  type: array
31697
32374
  items:
@@ -31779,7 +32456,7 @@ paths:
31779
32456
  allOf:
31780
32457
  - title: plannableItems.inforequest
31781
32458
  type: object
31782
- properties: &ref_696
32459
+ properties: &ref_726
31783
32460
  id:
31784
32461
  type: string
31785
32462
  example: 018d79a1-2b99-7fbd-b323-500b01305371
@@ -31807,7 +32484,7 @@ paths:
31807
32484
  allOf:
31808
32485
  - title: plannableItems.inforesponse
31809
32486
  type: object
31810
- properties: &ref_697
32487
+ properties: &ref_727
31811
32488
  data:
31812
32489
  type: object
31813
32490
  properties:
@@ -31885,7 +32562,7 @@ paths:
31885
32562
  allOf:
31886
32563
  - title: reservations.listrequest
31887
32564
  type: object
31888
- properties: &ref_698
32565
+ properties: &ref_728
31889
32566
  filter:
31890
32567
  type: object
31891
32568
  properties:
@@ -31963,7 +32640,7 @@ paths:
31963
32640
  allOf:
31964
32641
  - title: reservations.listresponse
31965
32642
  type: object
31966
- properties: &ref_699
32643
+ properties: &ref_729
31967
32644
  data:
31968
32645
  type: array
31969
32646
  items:
@@ -32061,12 +32738,12 @@ paths:
32061
32738
  allOf:
32062
32739
  - title: reservations.createrequest
32063
32740
  type: object
32064
- required: &ref_700
32741
+ required: &ref_730
32065
32742
  - plannable_item_id
32066
32743
  - date
32067
32744
  - duration
32068
32745
  - assignee
32069
- properties: &ref_701
32746
+ properties: &ref_731
32070
32747
  plannable_item_id:
32071
32748
  type: string
32072
32749
  example: e82cec33-24c9-4d13-96cb-d515a1660c8d
@@ -32123,7 +32800,7 @@ paths:
32123
32800
  allOf:
32124
32801
  - title: reservations.createresponse
32125
32802
  type: object
32126
- properties: &ref_702
32803
+ properties: &ref_732
32127
32804
  data:
32128
32805
  title: TypeAndId
32129
32806
  type: object
@@ -32153,9 +32830,9 @@ paths:
32153
32830
  allOf:
32154
32831
  - title: reservations.updaterequest
32155
32832
  type: object
32156
- required: &ref_703
32833
+ required: &ref_733
32157
32834
  - id
32158
- properties: &ref_704
32835
+ properties: &ref_734
32159
32836
  id:
32160
32837
  type: string
32161
32838
  example: 01878019-c72c-70dc-b097-7e519c775e35
@@ -32218,9 +32895,9 @@ paths:
32218
32895
  allOf:
32219
32896
  - title: reservations.deleterequest
32220
32897
  type: object
32221
- required: &ref_705
32898
+ required: &ref_735
32222
32899
  - id
32223
- properties: &ref_706
32900
+ properties: &ref_736
32224
32901
  id:
32225
32902
  type: string
32226
32903
  example: 01878019-c72c-70dc-b097-7e519c775e35
@@ -32251,9 +32928,9 @@ paths:
32251
32928
  allOf:
32252
32929
  - title: userAvailability.totalrequest
32253
32930
  type: object
32254
- required: &ref_707
32931
+ required: &ref_737
32255
32932
  - period
32256
- properties: &ref_708
32933
+ properties: &ref_738
32257
32934
  period:
32258
32935
  allOf:
32259
32936
  - title: Period
@@ -32310,7 +32987,7 @@ paths:
32310
32987
  allOf:
32311
32988
  - title: userAvailability.totalresponse
32312
32989
  type: object
32313
- properties: &ref_709
32990
+ properties: &ref_739
32314
32991
  data:
32315
32992
  type: array
32316
32993
  items:
@@ -32405,9 +33082,9 @@ paths:
32405
33082
  allOf:
32406
33083
  - title: userAvailability.dailyrequest
32407
33084
  type: object
32408
- required: &ref_710
33085
+ required: &ref_740
32409
33086
  - period
32410
- properties: &ref_711
33087
+ properties: &ref_741
32411
33088
  period:
32412
33089
  allOf:
32413
33090
  - title: Period
@@ -32458,7 +33135,7 @@ paths:
32458
33135
  allOf:
32459
33136
  - title: userAvailability.dailyresponse
32460
33137
  type: object
32461
- properties: &ref_712
33138
+ properties: &ref_742
32462
33139
  data:
32463
33140
  type: array
32464
33141
  items:
@@ -33811,18 +34488,102 @@ components:
33811
34488
  expenses.listresponse:
33812
34489
  type: object
33813
34490
  properties: *ref_441
34491
+ incomingCreditNotes.listPaymentsrequest:
34492
+ title: incomingCreditNotes.listPaymentsrequest
34493
+ type: object
34494
+ properties: *ref_442
34495
+ required: *ref_443
34496
+ incomingCreditNotes.listPaymentsresponse:
34497
+ title: receipts.listPaymentsresponse
34498
+ type: object
34499
+ properties: *ref_444
34500
+ incomingCreditNotes.registerPaymentrequest:
34501
+ title: receipts.incomingCreditNotes
34502
+ type: object
34503
+ properties: *ref_445
34504
+ required: *ref_446
34505
+ incomingCreditNotes.registerPaymentresponse:
34506
+ title: receipts.registerPaymentresponse
34507
+ type: object
34508
+ properties: *ref_447
34509
+ incomingCreditNotes.removePaymentrequest:
34510
+ title: receipts.removePaymentrequest
34511
+ type: object
34512
+ properties: *ref_448
34513
+ required: *ref_449
34514
+ incomingCreditNotes.updatePaymentrequest:
34515
+ title: incomingCreditNotes.updatePaymentrequest
34516
+ type: object
34517
+ properties: *ref_450
34518
+ required: *ref_451
34519
+ incomingInvoices.listPaymentsrequest:
34520
+ title: incomingInvoices.listPaymentsrequest
34521
+ type: object
34522
+ properties: *ref_452
34523
+ required: *ref_453
34524
+ incomingInvoices.listPaymentsresponse:
34525
+ title: receipts.listPaymentsresponse
34526
+ type: object
34527
+ properties: *ref_454
34528
+ incomingInvoices.registerPaymentrequest:
34529
+ title: incomingInvoices.registerPaymentrequest
34530
+ type: object
34531
+ properties: *ref_455
34532
+ required: *ref_456
34533
+ incomingInvoices.registerPaymentresponse:
34534
+ title: receipts.registerPaymentresponse
34535
+ type: object
34536
+ properties: *ref_457
34537
+ incomingInvoices.removePaymentrequest:
34538
+ title: incomingInvoices.removePaymentrequest
34539
+ type: object
34540
+ properties: *ref_458
34541
+ required: *ref_459
34542
+ incomingInvoices.updatePaymentrequest:
34543
+ title: incomingInvoices.updatePaymentrequest
34544
+ type: object
34545
+ properties: *ref_460
34546
+ required: *ref_461
34547
+ receipts.listPaymentsrequest:
34548
+ title: receipts.listPaymentsrequest
34549
+ type: object
34550
+ properties: *ref_462
34551
+ required: *ref_463
34552
+ receipts.listPaymentsresponse:
34553
+ title: receipts.listPaymentsresponse
34554
+ type: object
34555
+ properties: *ref_464
34556
+ receipts.registerPaymentrequest:
34557
+ title: receipts.registerPaymentrequest
34558
+ type: object
34559
+ properties: *ref_465
34560
+ required: *ref_466
34561
+ receipts.registerPaymentresponse:
34562
+ title: receipts.registerPaymentresponse
34563
+ type: object
34564
+ properties: *ref_467
34565
+ receipts.removePaymentrequest:
34566
+ title: receipts.removePaymentrequest
34567
+ type: object
34568
+ properties: *ref_468
34569
+ required: *ref_469
34570
+ receipts.updatePaymentrequest:
34571
+ title: receipts.updatePaymentrequest
34572
+ type: object
34573
+ properties: *ref_470
34574
+ required: *ref_471
33814
34575
  productCategories.listrequest:
33815
34576
  title: productCategories.listrequest
33816
34577
  type: object
33817
- properties: *ref_442
34578
+ properties: *ref_472
33818
34579
  productCategories.listresponse:
33819
34580
  title: productCategories.listresponse
33820
34581
  type: object
33821
- properties: *ref_443
34582
+ properties: *ref_473
33822
34583
  products.listrequest:
33823
34584
  title: products.listrequest
33824
34585
  type: object
33825
- properties: *ref_444
34586
+ properties: *ref_474
33826
34587
  Stock:
33827
34588
  title: Stock
33828
34589
  type: object
@@ -33835,26 +34596,26 @@ components:
33835
34596
  products.listresponse:
33836
34597
  title: products.listresponse
33837
34598
  type: object
33838
- properties: *ref_445
34599
+ properties: *ref_475
33839
34600
  products.inforequest:
33840
34601
  title: products.inforequest
33841
- required: *ref_446
34602
+ required: *ref_476
33842
34603
  type: object
33843
- properties: *ref_447
34604
+ properties: *ref_477
33844
34605
  products.inforesponse:
33845
34606
  title: products.inforesponse
33846
34607
  type: object
33847
- properties: *ref_448
34608
+ properties: *ref_478
33848
34609
  ProductPriceWrite:
33849
34610
  title: ProductPriceWrite
33850
- required: *ref_449
34611
+ required: *ref_479
33851
34612
  type: object
33852
- properties: *ref_450
34613
+ properties: *ref_480
33853
34614
  StockThreshold:
33854
34615
  title: StockThreshold
33855
- required: *ref_451
34616
+ required: *ref_481
33856
34617
  type: object
33857
- properties: *ref_452
34618
+ properties: *ref_482
33858
34619
  description: Only available when stock management feature is enabled
33859
34620
  ProductConfigurationWrite:
33860
34621
  title: ProductConfigurationWrite
@@ -33867,33 +34628,33 @@ components:
33867
34628
  products.addresponse:
33868
34629
  title: products.addresponse
33869
34630
  type: object
33870
- properties: *ref_453
34631
+ properties: *ref_483
33871
34632
  products.updaterequest:
33872
34633
  title: products.updaterequest
33873
- required: *ref_454
34634
+ required: *ref_484
33874
34635
  type: object
33875
- properties: *ref_455
34636
+ properties: *ref_485
33876
34637
  products.deleterequest:
33877
34638
  title: products.deleterequest
33878
- required: *ref_456
34639
+ required: *ref_486
33879
34640
  type: object
33880
- properties: *ref_457
34641
+ properties: *ref_487
33881
34642
  unitsOfMeasure.listresponse:
33882
34643
  title: unitsOfMeasure.listresponse
33883
34644
  type: object
33884
- properties: *ref_458
34645
+ properties: *ref_488
33885
34646
  priceLists.listrequest:
33886
34647
  title: priceLists.listrequest
33887
34648
  type: object
33888
- properties: *ref_459
34649
+ properties: *ref_489
33889
34650
  priceLists.listresponse:
33890
34651
  title: priceLists.listresponse
33891
34652
  type: object
33892
- properties: *ref_460
34653
+ properties: *ref_490
33893
34654
  projects.listrequest:
33894
34655
  title: projects.listrequest
33895
34656
  type: object
33896
- properties: *ref_461
34657
+ properties: *ref_491
33897
34658
  ProjectsActuals:
33898
34659
  title: ProjectsActuals
33899
34660
  type: object
@@ -33907,12 +34668,12 @@ components:
33907
34668
  projects.listresponse:
33908
34669
  title: projects.listresponse
33909
34670
  type: object
33910
- properties: *ref_462
34671
+ properties: *ref_492
33911
34672
  projects.inforequest:
33912
34673
  title: projects.inforequest
33913
- required: *ref_463
34674
+ required: *ref_493
33914
34675
  type: object
33915
- properties: *ref_464
34676
+ properties: *ref_494
33916
34677
  Role:
33917
34678
  title: Role
33918
34679
  enum: *ref_89
@@ -33924,26 +34685,26 @@ components:
33924
34685
  projects.inforesponse:
33925
34686
  title: projects.inforesponse
33926
34687
  type: object
33927
- properties: *ref_465
34688
+ properties: *ref_495
33928
34689
  projects.createrequest:
33929
34690
  title: projects.createrequest
33930
- required: *ref_466
34691
+ required: *ref_496
33931
34692
  type: object
33932
- properties: *ref_467
34693
+ properties: *ref_497
33933
34694
  projects.createresponse:
33934
34695
  title: projects.createresponse
33935
34696
  type: object
33936
34697
  properties: *ref_94
33937
34698
  projects.updaterequest:
33938
34699
  title: projects.updaterequest
33939
- required: *ref_468
34700
+ required: *ref_498
33940
34701
  type: object
33941
- properties: *ref_469
34702
+ properties: *ref_499
33942
34703
  projects.closerequest:
33943
34704
  title: projects.closerequest
33944
- required: *ref_470
34705
+ required: *ref_500
33945
34706
  type: object
33946
- properties: *ref_471
34707
+ properties: *ref_501
33947
34708
  projects.reopenrequest:
33948
34709
  title: projects.reopenrequest
33949
34710
  required: *ref_95
@@ -33951,23 +34712,23 @@ components:
33951
34712
  properties: *ref_96
33952
34713
  projects.deleterequest:
33953
34714
  title: projects.deleterequest
33954
- required: *ref_472
34715
+ required: *ref_502
33955
34716
  type: object
33956
- properties: *ref_473
34717
+ properties: *ref_503
33957
34718
  projects.addParticipantrequest:
33958
34719
  title: projects.addParticipantrequest
33959
- required: *ref_474
34720
+ required: *ref_504
33960
34721
  type: object
33961
- properties: *ref_475
34722
+ properties: *ref_505
33962
34723
  projects.updateParticipantrequest:
33963
34724
  title: projects.updateParticipantrequest
33964
- required: *ref_476
34725
+ required: *ref_506
33965
34726
  type: object
33966
- properties: *ref_477
34727
+ properties: *ref_507
33967
34728
  milestones.listrequest:
33968
34729
  title: milestones.listrequest
33969
34730
  type: object
33970
- properties: *ref_478
34731
+ properties: *ref_508
33971
34732
  MilestonesActuals:
33972
34733
  title: MilestonesActuals
33973
34734
  type: object
@@ -33981,50 +34742,50 @@ components:
33981
34742
  milestones.listresponse:
33982
34743
  title: milestones.listresponse
33983
34744
  type: object
33984
- properties: *ref_479
34745
+ properties: *ref_509
33985
34746
  milestones.inforequest:
33986
34747
  title: milestones.inforequest
33987
- required: *ref_480
34748
+ required: *ref_510
33988
34749
  type: object
33989
- properties: *ref_481
34750
+ properties: *ref_511
33990
34751
  milestones.inforesponse:
33991
34752
  title: milestones.inforesponse
33992
34753
  type: object
33993
- properties: *ref_482
34754
+ properties: *ref_512
33994
34755
  milestones.createrequest:
33995
34756
  title: milestones.createrequest
33996
- required: *ref_483
34757
+ required: *ref_513
33997
34758
  type: object
33998
- properties: *ref_484
33999
- oneOf: *ref_485
34759
+ properties: *ref_514
34760
+ oneOf: *ref_515
34000
34761
  milestones.createresponse:
34001
34762
  title: milestones.createresponse
34002
34763
  type: object
34003
- properties: *ref_486
34764
+ properties: *ref_516
34004
34765
  milestones.updaterequest:
34005
34766
  title: milestones.updaterequest
34006
- required: *ref_487
34767
+ required: *ref_517
34007
34768
  type: object
34008
- properties: *ref_488
34769
+ properties: *ref_518
34009
34770
  milestones.deleterequest:
34010
34771
  title: milestones.deleterequest
34011
- required: *ref_489
34772
+ required: *ref_519
34012
34773
  type: object
34013
- properties: *ref_490
34774
+ properties: *ref_520
34014
34775
  milestones.closerequest:
34015
34776
  title: milestones.closerequest
34016
- required: *ref_491
34777
+ required: *ref_521
34017
34778
  type: object
34018
- properties: *ref_492
34779
+ properties: *ref_522
34019
34780
  milestones.openrequest:
34020
34781
  title: milestones.openrequest
34021
- required: *ref_493
34782
+ required: *ref_523
34022
34783
  type: object
34023
- properties: *ref_494
34784
+ properties: *ref_524
34024
34785
  projects-v2.listrequest:
34025
34786
  title: projects-v2.listrequest
34026
34787
  type: object
34027
- properties: *ref_495
34788
+ properties: *ref_525
34028
34789
  Color:
34029
34790
  title: Color
34030
34791
  enum: *ref_92
@@ -34037,21 +34798,21 @@ components:
34037
34798
  projects-v2.listresponse:
34038
34799
  title: projects-v2.listresponse
34039
34800
  type: object
34040
- properties: *ref_496
34801
+ properties: *ref_526
34041
34802
  projects-v2.inforequest:
34042
34803
  title: projects-v2.inforequest
34043
- required: *ref_497
34804
+ required: *ref_527
34044
34805
  type: object
34045
- properties: *ref_498
34806
+ properties: *ref_528
34046
34807
  projects-v2.inforesponse:
34047
34808
  title: projects.inforesponse1
34048
34809
  type: object
34049
- properties: *ref_499
34810
+ properties: *ref_529
34050
34811
  projects-v2.createrequest:
34051
34812
  title: projects-v2.createrequest
34052
- required: *ref_500
34813
+ required: *ref_530
34053
34814
  type: object
34054
- properties: *ref_501
34815
+ properties: *ref_531
34055
34816
  BillingMethod:
34056
34817
  title: BillingMethod
34057
34818
  required: *ref_98
@@ -34059,116 +34820,116 @@ components:
34059
34820
  properties: *ref_99
34060
34821
  projects-v2.updaterequest:
34061
34822
  title: projects-v2.updaterequest
34062
- required: *ref_502
34823
+ required: *ref_532
34063
34824
  type: object
34064
- properties: *ref_503
34825
+ properties: *ref_533
34065
34826
  projects-v2.closerequest:
34066
34827
  title: projects-v2.closerequest
34067
- required: *ref_504
34828
+ required: *ref_534
34068
34829
  type: object
34069
- properties: *ref_505
34830
+ properties: *ref_535
34070
34831
  projects-v2.duplicaterequest:
34071
34832
  title: projects-v2.duplicaterequest
34072
- required: *ref_506
34833
+ required: *ref_536
34073
34834
  type: object
34074
- properties: *ref_507
34835
+ properties: *ref_537
34075
34836
  projects-v2.duplicateresponse:
34076
34837
  title: projects-v2.duplicateresponse
34077
34838
  type: object
34078
- properties: *ref_508
34839
+ properties: *ref_538
34079
34840
  projects-v2.deleterequest:
34080
34841
  title: projects-v2.deleterequest
34081
- required: *ref_509
34842
+ required: *ref_539
34082
34843
  type: object
34083
- properties: *ref_510
34844
+ properties: *ref_540
34084
34845
  projects-v2.addOwnerrequest:
34085
34846
  title: projects-v2.addOwnerrequest
34086
- required: *ref_511
34847
+ required: *ref_541
34087
34848
  type: object
34088
- properties: *ref_512
34849
+ properties: *ref_542
34089
34850
  projects-v2.removeOwnerrequest:
34090
34851
  title: projects-v2.removeOwnerrequest
34091
- required: *ref_513
34852
+ required: *ref_543
34092
34853
  type: object
34093
- properties: *ref_514
34854
+ properties: *ref_544
34094
34855
  projects-v2.assignrequest:
34095
34856
  title: projects-v2.assignrequest
34096
- required: *ref_515
34857
+ required: *ref_545
34097
34858
  type: object
34098
- properties: *ref_516
34859
+ properties: *ref_546
34099
34860
  projects-v2.unassignrequest:
34100
34861
  title: projects-v2.unassignrequest
34101
- required: *ref_517
34862
+ required: *ref_547
34102
34863
  type: object
34103
- properties: *ref_518
34864
+ properties: *ref_548
34104
34865
  projects-v2.addCustomerrequest:
34105
34866
  title: projects-v2.addCustomerrequest
34106
- required: *ref_519
34867
+ required: *ref_549
34107
34868
  type: object
34108
- properties: *ref_520
34869
+ properties: *ref_550
34109
34870
  projects-v2.removeCustomerrequest:
34110
34871
  title: projects-v2.removeCustomerrequest
34111
- required: *ref_521
34872
+ required: *ref_551
34112
34873
  type: object
34113
- properties: *ref_522
34874
+ properties: *ref_552
34114
34875
  projects-v2.addDealrequest:
34115
34876
  title: projects-v2.addDealrequest
34116
- required: *ref_523
34877
+ required: *ref_553
34117
34878
  type: object
34118
- properties: *ref_524
34879
+ properties: *ref_554
34119
34880
  projects-v2.removeDealrequest:
34120
34881
  title: projects-v2.removeDealrequest
34121
- required: *ref_525
34882
+ required: *ref_555
34122
34883
  type: object
34123
- properties: *ref_526
34884
+ properties: *ref_556
34124
34885
  projects-v2.addQuotationrequest:
34125
34886
  title: projects-v2.addQuotationrequest
34126
- required: *ref_527
34887
+ required: *ref_557
34127
34888
  type: object
34128
- properties: *ref_528
34889
+ properties: *ref_558
34129
34890
  projects-v2.removeQuotationrequest:
34130
34891
  title: projects-v2.removeQuotationrequest
34131
- required: *ref_529
34892
+ required: *ref_559
34132
34893
  type: object
34133
- properties: *ref_530
34894
+ properties: *ref_560
34134
34895
  projects-v2_externalParties.addToProjectrequest:
34135
34896
  title: projects-v2_externalParties.addToProjectrequest
34136
- required: *ref_531
34897
+ required: *ref_561
34137
34898
  type: object
34138
- properties: *ref_532
34899
+ properties: *ref_562
34139
34900
  projects-v2_externalParties.updaterequest:
34140
34901
  title: projects-v2_externalParties.updaterequest
34141
- required: *ref_533
34902
+ required: *ref_563
34142
34903
  type: object
34143
- properties: *ref_534
34904
+ properties: *ref_564
34144
34905
  projects-v2_externalParties.deleterequest:
34145
34906
  title: projects-v2_externalParties.deleterequest
34146
- required: *ref_535
34907
+ required: *ref_565
34147
34908
  type: object
34148
- properties: *ref_536
34909
+ properties: *ref_566
34149
34910
  projects-v2_projectLines.listrequest:
34150
34911
  title: projects-v2_projectLines.listrequest
34151
- required: *ref_537
34912
+ required: *ref_567
34152
34913
  type: object
34153
- properties: *ref_538
34914
+ properties: *ref_568
34154
34915
  projects-v2_projectLines.listresponse:
34155
34916
  title: projects-v2_projectLines.listresponse
34156
34917
  type: object
34157
- properties: *ref_539
34918
+ properties: *ref_569
34158
34919
  projects-v2_projectLines.addToGrouprequest:
34159
34920
  title: projects-v2_projectLines.addToGrouprequest
34160
- required: *ref_540
34921
+ required: *ref_570
34161
34922
  type: object
34162
- properties: *ref_541
34923
+ properties: *ref_571
34163
34924
  projects-v2_projectLines.removeFromGrouprequest:
34164
34925
  title: projects-v2_projectLines.removeFromGrouprequest
34165
- required: *ref_542
34926
+ required: *ref_572
34166
34927
  type: object
34167
- properties: *ref_543
34928
+ properties: *ref_573
34168
34929
  projects-v2_projectGroups.listrequest:
34169
34930
  title: projects-v2_projectGroups.listrequest
34170
34931
  type: object
34171
- properties: *ref_544
34932
+ properties: *ref_574
34172
34933
  BillingStatus:
34173
34934
  title: BillingStatus
34174
34935
  enum: *ref_97
@@ -34177,62 +34938,62 @@ components:
34177
34938
  projects-v2_projectGroups.listresponse:
34178
34939
  title: projects-v2_projectGroups.listresponse
34179
34940
  type: object
34180
- properties: *ref_545
34941
+ properties: *ref_575
34181
34942
  projects-v2_projectGroups.inforequest:
34182
34943
  title: projects-v2_projectGroups.inforequest
34183
- required: *ref_546
34944
+ required: *ref_576
34184
34945
  type: object
34185
- properties: *ref_547
34946
+ properties: *ref_577
34186
34947
  projects-v2_projectGroups.inforesponse:
34187
34948
  title: projects-v2_projectGroups.inforesponse
34188
34949
  type: object
34189
- properties: *ref_548
34950
+ properties: *ref_578
34190
34951
  projects-v2_projectGroups.createrequest:
34191
34952
  title: projects-v2_projectGroups.createrequest
34192
- required: *ref_549
34953
+ required: *ref_579
34193
34954
  type: object
34194
- properties: *ref_550
34955
+ properties: *ref_580
34195
34956
  projects-v2_projectGroups.createresponse:
34196
34957
  title: projects-v2_projectGroups.createresponse
34197
34958
  type: object
34198
- properties: *ref_551
34959
+ properties: *ref_581
34199
34960
  projects-v2_projectGroups.updaterequest:
34200
34961
  title: projects-v2_projectGroups.updaterequest
34201
- required: *ref_552
34962
+ required: *ref_582
34202
34963
  type: object
34203
- properties: *ref_553
34964
+ properties: *ref_583
34204
34965
  projects-v2_projectGroups.duplicaterequest:
34205
34966
  title: projects-v2_projectGroups.duplicaterequest
34206
- required: *ref_554
34967
+ required: *ref_584
34207
34968
  type: object
34208
- properties: *ref_555
34969
+ properties: *ref_585
34209
34970
  projects-v2_projectGroups.duplicateresponse:
34210
34971
  title: projects-v2_projectGroups.duplicateresponse
34211
34972
  type: object
34212
- properties: *ref_556
34973
+ properties: *ref_586
34213
34974
  projects-v2_projectGroups.deleterequest:
34214
34975
  title: projects-v2_projectGroups.deleterequest
34215
- required: *ref_557
34976
+ required: *ref_587
34216
34977
  type: object
34217
- properties: *ref_558
34978
+ properties: *ref_588
34218
34979
  projects-v2_projectGroups.assignrequest:
34219
34980
  title: projects-v2_projectGroups.assignrequest
34220
- required: *ref_559
34981
+ required: *ref_589
34221
34982
  type: object
34222
- properties: *ref_560
34983
+ properties: *ref_590
34223
34984
  projects-v2_projectGroups.unassignrequest:
34224
34985
  title: projects-v2_projectGroups.unassignrequest
34225
- required: *ref_561
34986
+ required: *ref_591
34226
34987
  type: object
34227
- properties: *ref_562
34988
+ properties: *ref_592
34228
34989
  projects-v2_tasks.listrequest:
34229
34990
  title: projects-v2_tasks.listrequest
34230
34991
  type: object
34231
- properties: *ref_563
34992
+ properties: *ref_593
34232
34993
  projects-v2_tasks.listresponse:
34233
34994
  title: projects-v2_tasks.listresponse
34234
34995
  type: object
34235
- properties: *ref_564
34996
+ properties: *ref_594
34236
34997
  tasks.inforequest:
34237
34998
  title: tasks.inforequest
34238
34999
  required: *ref_100
@@ -34241,104 +35002,104 @@ components:
34241
35002
  projects-v2_tasks.inforesponse:
34242
35003
  title: projects-v2_tasks.inforesponse
34243
35004
  type: object
34244
- properties: *ref_565
35005
+ properties: *ref_595
34245
35006
  projects-v2_tasks.createrequest:
34246
35007
  title: projects-v2_tasks.createrequest
34247
- required: *ref_566
35008
+ required: *ref_596
34248
35009
  type: object
34249
- properties: *ref_567
35010
+ properties: *ref_597
34250
35011
  tasks.createresponse:
34251
35012
  title: tasks.createresponse
34252
35013
  type: object
34253
35014
  properties: *ref_103
34254
35015
  projects-v2_tasks.updaterequest:
34255
35016
  title: projects-v2_tasks.updaterequest
34256
- required: *ref_568
35017
+ required: *ref_598
34257
35018
  type: object
34258
- properties: *ref_569
35019
+ properties: *ref_599
34259
35020
  projects-v2_tasks.duplicaterequest:
34260
35021
  title: projects-v2_tasks.duplicaterequest
34261
- required: *ref_570
35022
+ required: *ref_600
34262
35023
  type: object
34263
- properties: *ref_571
35024
+ properties: *ref_601
34264
35025
  projects-v2_tasks.duplicateresponse:
34265
35026
  title: projects-v2_tasks.duplicateresponse
34266
35027
  type: object
34267
- properties: *ref_572
35028
+ properties: *ref_602
34268
35029
  projects-v2_tasks.deleterequest:
34269
35030
  title: projects-v2_tasks.deleterequest
34270
- required: *ref_573
35031
+ required: *ref_603
34271
35032
  type: object
34272
- properties: *ref_574
35033
+ properties: *ref_604
34273
35034
  projects-v2_tasks.assignrequest:
34274
35035
  title: projects-v2_tasks.assignrequest
34275
- required: *ref_575
35036
+ required: *ref_605
34276
35037
  type: object
34277
- properties: *ref_576
35038
+ properties: *ref_606
34278
35039
  projects-v2_tasks.unassignrequest:
34279
35040
  title: projects-v2_tasks.unassignrequest
34280
- required: *ref_577
35041
+ required: *ref_607
34281
35042
  type: object
34282
- properties: *ref_578
35043
+ properties: *ref_608
34283
35044
  projects-v2_materials.listrequest:
34284
35045
  title: projects-v2_materials.listrequest
34285
35046
  type: object
34286
- properties: *ref_579
35047
+ properties: *ref_609
34287
35048
  projects-v2_materials.listresponse:
34288
35049
  title: projects-v2_materials.listresponse
34289
35050
  type: object
34290
- properties: *ref_580
35051
+ properties: *ref_610
34291
35052
  projects-v2_materials.inforequest:
34292
35053
  title: projects-v2_materials.inforequest
34293
- required: *ref_581
35054
+ required: *ref_611
34294
35055
  type: object
34295
- properties: *ref_582
35056
+ properties: *ref_612
34296
35057
  projects-v2_materials.inforesponse:
34297
35058
  title: projects-v2_materials.inforesponse
34298
35059
  type: object
34299
- properties: *ref_583
35060
+ properties: *ref_613
34300
35061
  projects-v2_materials.createrequest:
34301
35062
  title: projects-v2_materials.createrequest
34302
- required: *ref_584
35063
+ required: *ref_614
34303
35064
  type: object
34304
- properties: *ref_585
35065
+ properties: *ref_615
34305
35066
  projects-v2_materials.createresponse:
34306
35067
  title: projects-v2_materials.createresponse
34307
35068
  type: object
34308
- properties: *ref_586
35069
+ properties: *ref_616
34309
35070
  projects-v2_materials.updaterequest:
34310
35071
  title: projects-v2_materials.updaterequest
34311
- required: *ref_587
35072
+ required: *ref_617
34312
35073
  type: object
34313
- properties: *ref_588
35074
+ properties: *ref_618
34314
35075
  projects-v2_materials.duplicaterequest:
34315
35076
  title: projects-v2_materials.duplicaterequest
34316
- required: *ref_589
35077
+ required: *ref_619
34317
35078
  type: object
34318
- properties: *ref_590
35079
+ properties: *ref_620
34319
35080
  projects-v2_materials.duplicateresponse:
34320
35081
  title: projects-v2_materials.duplicateresponse
34321
35082
  type: object
34322
- properties: *ref_591
35083
+ properties: *ref_621
34323
35084
  projects-v2_materials.deleterequest:
34324
35085
  title: projects-v2_materials.deleterequest
34325
- required: *ref_592
35086
+ required: *ref_622
34326
35087
  type: object
34327
- properties: *ref_593
35088
+ properties: *ref_623
34328
35089
  projects-v2_materials.assignrequest:
34329
35090
  title: projects-v2_materials.assignrequest
34330
- required: *ref_594
35091
+ required: *ref_624
34331
35092
  type: object
34332
- properties: *ref_595
35093
+ properties: *ref_625
34333
35094
  projects-v2_materials.unassignrequest:
34334
35095
  title: projects-v2_materials.unassignrequest
34335
- required: *ref_596
35096
+ required: *ref_626
34336
35097
  type: object
34337
- properties: *ref_597
35098
+ properties: *ref_627
34338
35099
  tasks.listrequest:
34339
35100
  title: tasks.listrequest1
34340
35101
  type: object
34341
- properties: *ref_598
35102
+ properties: *ref_628
34342
35103
  Priority:
34343
35104
  title: Priority
34344
35105
  enum: *ref_102
@@ -34346,49 +35107,49 @@ components:
34346
35107
  tasks.listresponse:
34347
35108
  title: tasks.listresponse1
34348
35109
  type: object
34349
- properties: *ref_599
35110
+ properties: *ref_629
34350
35111
  tasks.inforesponse:
34351
35112
  title: tasks.inforesponse1
34352
35113
  type: object
34353
- properties: *ref_600
35114
+ properties: *ref_630
34354
35115
  tasks.createrequest:
34355
35116
  title: tasks.createrequest1
34356
- required: *ref_601
35117
+ required: *ref_631
34357
35118
  type: object
34358
- properties: *ref_602
35119
+ properties: *ref_632
34359
35120
  tasks.updaterequest:
34360
35121
  title: tasks.updaterequest1
34361
- required: *ref_603
35122
+ required: *ref_633
34362
35123
  type: object
34363
- properties: *ref_604
35124
+ properties: *ref_634
34364
35125
  tasks.completerequest:
34365
35126
  title: tasks.completerequest
34366
- required: *ref_605
35127
+ required: *ref_635
34367
35128
  type: object
34368
- properties: *ref_606
35129
+ properties: *ref_636
34369
35130
  tasks.reopenrequest:
34370
35131
  title: tasks.reopenrequest
34371
- required: *ref_607
35132
+ required: *ref_637
34372
35133
  type: object
34373
- properties: *ref_608
35134
+ properties: *ref_638
34374
35135
  tasks.deleterequest:
34375
35136
  title: tasks.deleterequest1
34376
- required: *ref_609
35137
+ required: *ref_639
34377
35138
  type: object
34378
- properties: *ref_610
35139
+ properties: *ref_640
34379
35140
  tasks.schedulerequest:
34380
35141
  title: tasks.schedulerequest
34381
- required: *ref_611
35142
+ required: *ref_641
34382
35143
  type: object
34383
- properties: *ref_612
35144
+ properties: *ref_642
34384
35145
  tasks.scheduleresponse:
34385
35146
  title: tasks.scheduleresponse
34386
35147
  type: object
34387
- properties: *ref_613
35148
+ properties: *ref_643
34388
35149
  timeTracking.listrequest:
34389
35150
  title: timeTracking.listrequest
34390
35151
  type: object
34391
- properties: *ref_614
35152
+ properties: *ref_644
34392
35153
  BillingInfo:
34393
35154
  title: BillingInfo
34394
35155
  type: object
@@ -34404,82 +35165,82 @@ components:
34404
35165
  timeTracking.listresponse:
34405
35166
  title: timeTracking.listresponse
34406
35167
  type: object
34407
- properties: *ref_615
35168
+ properties: *ref_645
34408
35169
  timeTracking.inforequest:
34409
35170
  title: timeTracking.inforequest
34410
- required: *ref_616
35171
+ required: *ref_646
34411
35172
  type: object
34412
- properties: *ref_617
35173
+ properties: *ref_647
34413
35174
  timeTracking.inforesponse:
34414
35175
  title: timeTracking.inforesponse
34415
35176
  type: object
34416
- properties: *ref_618
35177
+ properties: *ref_648
34417
35178
  timeTracking.addrequest:
34418
35179
  title: timeTracking.addrequest
34419
35180
  type: object
34420
- properties: *ref_619
34421
- oneOf: *ref_620
35181
+ properties: *ref_649
35182
+ oneOf: *ref_650
34422
35183
  timeTracking.addresponse:
34423
35184
  title: timeTracking.addresponse
34424
35185
  type: object
34425
- properties: *ref_621
35186
+ properties: *ref_651
34426
35187
  timeTracking.updaterequest:
34427
35188
  title: timeTracking.updaterequest
34428
- required: *ref_622
35189
+ required: *ref_652
34429
35190
  type: object
34430
- properties: *ref_623
34431
- oneOf: *ref_624
35191
+ properties: *ref_653
35192
+ oneOf: *ref_654
34432
35193
  timeTracking.resumerequest:
34433
35194
  title: timeTracking.resumerequest
34434
- required: *ref_625
35195
+ required: *ref_655
34435
35196
  type: object
34436
- properties: *ref_626
35197
+ properties: *ref_656
34437
35198
  timeTracking.resumeresponse:
34438
35199
  title: timeTracking.resumeresponse
34439
35200
  type: object
34440
- properties: *ref_627
35201
+ properties: *ref_657
34441
35202
  timeTracking.deleterequest:
34442
35203
  title: timeTracking.deleterequest
34443
- required: *ref_628
35204
+ required: *ref_658
34444
35205
  type: object
34445
- properties: *ref_629
35206
+ properties: *ref_659
34446
35207
  timers.currentresponse:
34447
35208
  title: timers.currentresponse
34448
35209
  type: object
34449
- properties: *ref_630
35210
+ properties: *ref_660
34450
35211
  timers.startrequest:
34451
35212
  title: timers.startrequest
34452
35213
  type: object
34453
- properties: *ref_631
35214
+ properties: *ref_661
34454
35215
  timers.startresponse:
34455
35216
  title: timers.startresponse
34456
35217
  type: object
34457
- properties: *ref_632
35218
+ properties: *ref_662
34458
35219
  timers.stopresponse:
34459
35220
  title: timers.stopresponse
34460
35221
  type: object
34461
- properties: *ref_633
35222
+ properties: *ref_663
34462
35223
  timers.updaterequest:
34463
35224
  title: timers.updaterequest
34464
35225
  type: object
34465
- properties: *ref_634
35226
+ properties: *ref_664
34466
35227
  tickets.listrequest:
34467
35228
  title: tickets.listrequest
34468
35229
  type: object
34469
- properties: *ref_635
35230
+ properties: *ref_665
34470
35231
  tickets.listresponse:
34471
35232
  title: tickets.listresponse
34472
35233
  type: object
34473
- properties: *ref_636
35234
+ properties: *ref_666
34474
35235
  tickets.inforequest:
34475
35236
  title: tickets.inforequest
34476
- required: *ref_637
35237
+ required: *ref_667
34477
35238
  type: object
34478
- properties: *ref_638
35239
+ properties: *ref_668
34479
35240
  tickets.inforesponse:
34480
35241
  title: tickets.inforesponse
34481
35242
  type: object
34482
- properties: *ref_639
35243
+ properties: *ref_669
34483
35244
  CompanyCustomer:
34484
35245
  title: CompanyCustomer
34485
35246
  required: *ref_107
@@ -34487,22 +35248,22 @@ components:
34487
35248
  properties: *ref_108
34488
35249
  tickets.createrequest:
34489
35250
  title: tickets.createrequest
34490
- required: *ref_640
35251
+ required: *ref_670
34491
35252
  type: object
34492
- properties: *ref_641
35253
+ properties: *ref_671
34493
35254
  tickets.createresponse:
34494
35255
  title: tickets.createresponse
34495
35256
  type: object
34496
- properties: *ref_642
35257
+ properties: *ref_672
34497
35258
  tickets.updaterequest:
34498
35259
  title: tickets.updaterequest
34499
- required: *ref_643
35260
+ required: *ref_673
34500
35261
  type: object
34501
- properties: *ref_644
35262
+ properties: *ref_674
34502
35263
  tickets.listMessagesrequest:
34503
35264
  title: tickets.listMessagesrequest
34504
35265
  type: object
34505
- properties: *ref_645
35266
+ properties: *ref_675
34506
35267
  SentBy:
34507
35268
  title: SentBy
34508
35269
  type: object
@@ -34510,55 +35271,55 @@ components:
34510
35271
  tickets.listMessagesresponse:
34511
35272
  title: tickets.listMessagesresponse
34512
35273
  type: object
34513
- properties: *ref_646
35274
+ properties: *ref_676
34514
35275
  tickets.getMessagerequest:
34515
35276
  title: tickets.getMessagerequest
34516
35277
  type: object
34517
- properties: *ref_647
35278
+ properties: *ref_677
34518
35279
  tickets.getMessageresponse:
34519
35280
  title: tickets.getMessageresponse
34520
35281
  type: object
34521
- properties: *ref_648
35282
+ properties: *ref_678
34522
35283
  tickets.importMessagerequest:
34523
35284
  title: tickets.importMessagerequest
34524
- required: *ref_649
35285
+ required: *ref_679
34525
35286
  type: object
34526
- properties: *ref_650
35287
+ properties: *ref_680
34527
35288
  tickets.importMessageresponse:
34528
35289
  title: tickets.importMessageresponse
34529
35290
  type: object
34530
- properties: *ref_651
35291
+ properties: *ref_681
34531
35292
  tickets.addReplyrequest:
34532
35293
  title: tickets.addReplyrequest
34533
- required: *ref_652
35294
+ required: *ref_682
34534
35295
  type: object
34535
- properties: *ref_653
35296
+ properties: *ref_683
34536
35297
  tickets.addReplyresponse:
34537
35298
  title: tickets.addReplyresponse
34538
35299
  type: object
34539
- properties: *ref_654
35300
+ properties: *ref_684
34540
35301
  tickets.addInternalMessagerequest:
34541
35302
  title: tickets.addInternalMessagerequest
34542
- required: *ref_655
35303
+ required: *ref_685
34543
35304
  type: object
34544
- properties: *ref_656
35305
+ properties: *ref_686
34545
35306
  tickets.addInternalMessageresponse:
34546
35307
  title: tickets.addInternalMessageresponse
34547
35308
  type: object
34548
- properties: *ref_657
35309
+ properties: *ref_687
34549
35310
  ticketStatus.listrequest:
34550
35311
  title: ticketStatus.listrequest
34551
35312
  type: object
34552
- properties: *ref_658
35313
+ properties: *ref_688
34553
35314
  ticketStatus.listresponse:
34554
35315
  title: ticketStatus.listresponse
34555
35316
  type: object
34556
- properties: *ref_659
35317
+ properties: *ref_689
34557
35318
  files.listrequest:
34558
35319
  title: files.listrequest
34559
- required: *ref_660
35320
+ required: *ref_690
34560
35321
  type: object
34561
- properties: *ref_661
35322
+ properties: *ref_691
34562
35323
  MimeType:
34563
35324
  title: MimeType
34564
35325
  enum: *ref_110
@@ -34566,93 +35327,93 @@ components:
34566
35327
  files.listresponse:
34567
35328
  title: files.listresponse
34568
35329
  type: object
34569
- properties: *ref_662
35330
+ properties: *ref_692
34570
35331
  files.inforequest:
34571
35332
  title: files.inforequest
34572
- required: *ref_663
35333
+ required: *ref_693
34573
35334
  type: object
34574
- properties: *ref_664
35335
+ properties: *ref_694
34575
35336
  files.inforesponse:
34576
35337
  title: files.inforesponse
34577
35338
  type: object
34578
- properties: *ref_665
35339
+ properties: *ref_695
34579
35340
  files.downloadrequest:
34580
35341
  title: files.downloadrequest
34581
- required: *ref_666
35342
+ required: *ref_696
34582
35343
  type: object
34583
- properties: *ref_667
35344
+ properties: *ref_697
34584
35345
  files.downloadresponse:
34585
35346
  title: files.downloadresponse
34586
35347
  type: object
34587
- properties: *ref_668
35348
+ properties: *ref_698
34588
35349
  files.uploadrequest:
34589
35350
  title: files.uploadrequest
34590
- required: *ref_669
35351
+ required: *ref_699
34591
35352
  type: object
34592
- properties: *ref_670
35353
+ properties: *ref_700
34593
35354
  files.uploadresponse:
34594
35355
  title: files.uploadresponse
34595
35356
  type: object
34596
- properties: *ref_671
35357
+ properties: *ref_701
34597
35358
  files.deleterequest:
34598
35359
  title: files.deleterequest
34599
- required: *ref_672
35360
+ required: *ref_702
34600
35361
  type: object
34601
- properties: *ref_673
35362
+ properties: *ref_703
34602
35363
  mailTemplates.listrequest:
34603
35364
  title: mailTemplates.listrequest
34604
- required: *ref_674
35365
+ required: *ref_704
34605
35366
  type: object
34606
- properties: *ref_675
35367
+ properties: *ref_705
34607
35368
  mailTemplates.listresponse:
34608
35369
  title: mailTemplates.listresponse
34609
35370
  type: object
34610
- properties: *ref_676
35371
+ properties: *ref_706
34611
35372
  migrate.idrequest:
34612
35373
  title: migrate.idrequest
34613
35374
  type: object
34614
- properties: *ref_677
35375
+ properties: *ref_707
34615
35376
  migrate.idresponse:
34616
35377
  title: migrate.idresponse
34617
35378
  type: object
34618
- properties: *ref_678
35379
+ properties: *ref_708
34619
35380
  migrate.taxRaterequest:
34620
35381
  title: migrate.taxRaterequest
34621
35382
  type: object
34622
- properties: *ref_679
35383
+ properties: *ref_709
34623
35384
  migrate.taxRateresponse:
34624
35385
  title: migrate.taxRateresponse
34625
35386
  type: object
34626
- properties: *ref_680
35387
+ properties: *ref_710
34627
35388
  migrate.activityTyperequest:
34628
35389
  title: migrate.activityTyperequest
34629
35390
  type: object
34630
- properties: *ref_681
35391
+ properties: *ref_711
34631
35392
  migrate.activityTyperesponse:
34632
35393
  title: migrate.activityTyperesponse
34633
35394
  type: object
34634
- properties: *ref_682
35395
+ properties: *ref_712
34635
35396
  orders.inforequest:
34636
35397
  title: orders.inforequest
34637
- required: *ref_683
35398
+ required: *ref_713
34638
35399
  type: object
34639
- properties: *ref_684
35400
+ properties: *ref_714
34640
35401
  OrdersGroupedLinesResponse:
34641
35402
  title: OrdersGroupedLinesResponse
34642
35403
  type: object
34643
- properties: *ref_685
35404
+ properties: *ref_715
34644
35405
  orders.inforesponse:
34645
35406
  title: orders.inforesponse
34646
35407
  type: object
34647
- properties: *ref_686
35408
+ properties: *ref_716
34648
35409
  orders.listrequest:
34649
35410
  title: orders.listrequest
34650
35411
  type: object
34651
- properties: *ref_687
35412
+ properties: *ref_717
34652
35413
  orders.listresponse:
34653
35414
  title: orders.listresponse
34654
35415
  type: object
34655
- properties: *ref_688
35416
+ properties: *ref_718
34656
35417
  WebHook:
34657
35418
  title: WebHook
34658
35419
  required: *ref_111
@@ -34661,24 +35422,24 @@ components:
34661
35422
  webhooks.listresponse:
34662
35423
  title: webhooks.listresponse
34663
35424
  type: object
34664
- properties: *ref_689
35425
+ properties: *ref_719
34665
35426
  cloudPlatforms.urlrequest:
34666
35427
  title: cloudPlatforms.urlrequest
34667
- required: *ref_690
35428
+ required: *ref_720
34668
35429
  type: object
34669
- properties: *ref_691
35430
+ properties: *ref_721
34670
35431
  cloudPlatforms.urlresponse:
34671
35432
  title: cloudPlatforms.urlresponse
34672
35433
  type: object
34673
- properties: *ref_692
35434
+ properties: *ref_722
34674
35435
  accounts.projects-v2-statusresponse:
34675
35436
  title: accounts.projects-v2-statusresponse
34676
35437
  type: object
34677
- properties: *ref_693
35438
+ properties: *ref_723
34678
35439
  plannableItems.listrequest:
34679
35440
  title: plannableItems.listrequest
34680
35441
  type: object
34681
- properties: *ref_694
35442
+ properties: *ref_724
34682
35443
  DurationInMinutesFull:
34683
35444
  title: DurationInMinutesFull
34684
35445
  type: object
@@ -34686,15 +35447,15 @@ components:
34686
35447
  plannableItems.listresponse:
34687
35448
  title: plannableItems.listresponse
34688
35449
  type: object
34689
- properties: *ref_695
35450
+ properties: *ref_725
34690
35451
  plannableItems.inforequest:
34691
35452
  title: plannableItems.inforequest
34692
35453
  type: object
34693
- properties: *ref_696
35454
+ properties: *ref_726
34694
35455
  plannableItems.inforesponse:
34695
35456
  title: plannableItems.inforesponse
34696
35457
  type: object
34697
- properties: *ref_697
35458
+ properties: *ref_727
34698
35459
  SourceType:
34699
35460
  title: SourceType
34700
35461
  enum: *ref_114
@@ -34702,30 +35463,30 @@ components:
34702
35463
  reservations.listrequest:
34703
35464
  title: reservations.listrequest
34704
35465
  type: object
34705
- properties: *ref_698
35466
+ properties: *ref_728
34706
35467
  reservations.listresponse:
34707
35468
  title: reservations.listresponse
34708
35469
  type: object
34709
- properties: *ref_699
35470
+ properties: *ref_729
34710
35471
  reservations.createrequest:
34711
35472
  title: reservations.createrequest
34712
35473
  type: object
34713
- required: *ref_700
34714
- properties: *ref_701
35474
+ required: *ref_730
35475
+ properties: *ref_731
34715
35476
  reservations.createresponse:
34716
35477
  title: reservations.createresponse
34717
35478
  type: object
34718
- properties: *ref_702
35479
+ properties: *ref_732
34719
35480
  reservations.updaterequest:
34720
35481
  title: reservations.updaterequest
34721
35482
  type: object
34722
- required: *ref_703
34723
- properties: *ref_704
35483
+ required: *ref_733
35484
+ properties: *ref_734
34724
35485
  reservations.deleterequest:
34725
35486
  title: reservations.deleterequest
34726
35487
  type: object
34727
- required: *ref_705
34728
- properties: *ref_706
35488
+ required: *ref_735
35489
+ properties: *ref_736
34729
35490
  Period:
34730
35491
  title: Period
34731
35492
  type: object
@@ -34733,8 +35494,8 @@ components:
34733
35494
  userAvailability.totalrequest:
34734
35495
  title: userAvailability.totalrequest
34735
35496
  type: object
34736
- required: *ref_707
34737
- properties: *ref_708
35497
+ required: *ref_737
35498
+ properties: *ref_738
34738
35499
  UserAvailability:
34739
35500
  title: UserAvailability
34740
35501
  type: object
@@ -34742,16 +35503,16 @@ components:
34742
35503
  userAvailability.totalresponse:
34743
35504
  title: userAvailability.totalresponse
34744
35505
  type: object
34745
- properties: *ref_709
35506
+ properties: *ref_739
34746
35507
  userAvailability.dailyrequest:
34747
35508
  title: userAvailability.dailyrequest
34748
35509
  type: object
34749
- required: *ref_710
34750
- properties: *ref_711
35510
+ required: *ref_740
35511
+ properties: *ref_741
34751
35512
  userAvailability.dailyresponse:
34752
35513
  title: userAvailability.dailyresponse
34753
35514
  type: object
34754
- properties: *ref_712
35515
+ properties: *ref_742
34755
35516
  x-tagGroups:
34756
35517
  - name: General
34757
35518
  tags: