@teamleader/focus-api-specification 1.100.0 → 1.101.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.
|
|
6
|
+
version: 1.101.0
|
|
7
7
|
servers:
|
|
8
8
|
- url: https://api.focus.teamleader.eu
|
|
9
9
|
variables: {}
|
|
@@ -15830,31 +15830,9 @@ paths:
|
|
|
15830
15830
|
requestBody:
|
|
15831
15831
|
content:
|
|
15832
15832
|
application/json:
|
|
15833
|
-
example:
|
|
15834
|
-
filter:
|
|
15835
|
-
term: search terms
|
|
15836
|
-
source_types:
|
|
15837
|
-
- incomingInvoice
|
|
15838
|
-
- incomingCreditNote
|
|
15839
|
-
- receipt
|
|
15840
|
-
review_statuses:
|
|
15841
|
-
- pending
|
|
15842
|
-
- approved
|
|
15843
|
-
- refused
|
|
15844
|
-
bookkeeping_statuses:
|
|
15845
|
-
- sent
|
|
15846
|
-
- not_sent
|
|
15847
|
-
document_date:
|
|
15848
|
-
operator: is_empty
|
|
15849
|
-
value: YYYY-MM-DD
|
|
15850
|
-
start: YYYY-MM-DD
|
|
15851
|
-
end: YYYY-MM-DD
|
|
15852
|
-
page:
|
|
15853
|
-
size: 20
|
|
15854
|
-
number: 1
|
|
15855
15833
|
schema:
|
|
15856
15834
|
type: object
|
|
15857
|
-
properties:
|
|
15835
|
+
properties: &ref_440
|
|
15858
15836
|
filter:
|
|
15859
15837
|
type: object
|
|
15860
15838
|
properties:
|
|
@@ -15887,6 +15865,33 @@ paths:
|
|
|
15887
15865
|
enum:
|
|
15888
15866
|
- sent
|
|
15889
15867
|
- not_sent
|
|
15868
|
+
payment_statuses:
|
|
15869
|
+
type: array
|
|
15870
|
+
description: Filters by one or more payment statuses
|
|
15871
|
+
items:
|
|
15872
|
+
type: string
|
|
15873
|
+
enum:
|
|
15874
|
+
- paid
|
|
15875
|
+
- unpaid
|
|
15876
|
+
department_ids:
|
|
15877
|
+
type: array
|
|
15878
|
+
description: Filters by one or more department IDs
|
|
15879
|
+
items:
|
|
15880
|
+
type: string
|
|
15881
|
+
supplier:
|
|
15882
|
+
type: object
|
|
15883
|
+
description: Filters by a specific supplier
|
|
15884
|
+
properties:
|
|
15885
|
+
type:
|
|
15886
|
+
type: string
|
|
15887
|
+
enum:
|
|
15888
|
+
- company
|
|
15889
|
+
- contact
|
|
15890
|
+
id:
|
|
15891
|
+
type: string
|
|
15892
|
+
required:
|
|
15893
|
+
- type
|
|
15894
|
+
- id
|
|
15890
15895
|
document_date:
|
|
15891
15896
|
type: object
|
|
15892
15897
|
properties:
|
|
@@ -15909,6 +15914,29 @@ paths:
|
|
|
15909
15914
|
description: Required if operator is `between`
|
|
15910
15915
|
required:
|
|
15911
15916
|
- operator
|
|
15917
|
+
paid_at:
|
|
15918
|
+
type: object
|
|
15919
|
+
description: Filters by payment date
|
|
15920
|
+
properties:
|
|
15921
|
+
operator:
|
|
15922
|
+
type: string
|
|
15923
|
+
enum:
|
|
15924
|
+
- is_empty
|
|
15925
|
+
- between
|
|
15926
|
+
- equals
|
|
15927
|
+
- before
|
|
15928
|
+
- after
|
|
15929
|
+
value:
|
|
15930
|
+
type: string
|
|
15931
|
+
description: Required if operator is `equals`, `before`, or `after`
|
|
15932
|
+
start:
|
|
15933
|
+
type: string
|
|
15934
|
+
description: Required if operator is `between`
|
|
15935
|
+
end:
|
|
15936
|
+
type: string
|
|
15937
|
+
description: Required if operator is `between`
|
|
15938
|
+
required:
|
|
15939
|
+
- operator
|
|
15912
15940
|
page:
|
|
15913
15941
|
type: object
|
|
15914
15942
|
properties:
|
|
@@ -15918,6 +15946,58 @@ paths:
|
|
|
15918
15946
|
number:
|
|
15919
15947
|
type: number
|
|
15920
15948
|
default: 1
|
|
15949
|
+
sort:
|
|
15950
|
+
type: array
|
|
15951
|
+
items:
|
|
15952
|
+
allOf:
|
|
15953
|
+
- title: Sort
|
|
15954
|
+
required: *ref_3
|
|
15955
|
+
type: object
|
|
15956
|
+
properties: *ref_4
|
|
15957
|
+
- type: object
|
|
15958
|
+
properties:
|
|
15959
|
+
field:
|
|
15960
|
+
enum:
|
|
15961
|
+
- document_date
|
|
15962
|
+
- due_date
|
|
15963
|
+
- supplier_name
|
|
15964
|
+
example:
|
|
15965
|
+
filter:
|
|
15966
|
+
term: search terms
|
|
15967
|
+
source_types:
|
|
15968
|
+
- incomingInvoice
|
|
15969
|
+
- incomingCreditNote
|
|
15970
|
+
- receipt
|
|
15971
|
+
review_statuses:
|
|
15972
|
+
- pending
|
|
15973
|
+
- approved
|
|
15974
|
+
- refused
|
|
15975
|
+
bookkeeping_statuses:
|
|
15976
|
+
- sent
|
|
15977
|
+
- not_sent
|
|
15978
|
+
payment_statuses:
|
|
15979
|
+
- paid
|
|
15980
|
+
- unpaid
|
|
15981
|
+
department_ids:
|
|
15982
|
+
- 018fcef1-4f96-7349-9f57-1c7857023c42
|
|
15983
|
+
supplier:
|
|
15984
|
+
type: company
|
|
15985
|
+
id: f29abf48-337d-44b4-aad4-585f5277a456
|
|
15986
|
+
document_date:
|
|
15987
|
+
operator: is_empty
|
|
15988
|
+
value: YYYY-MM-DD
|
|
15989
|
+
start: YYYY-MM-DD
|
|
15990
|
+
end: YYYY-MM-DD
|
|
15991
|
+
paid_at:
|
|
15992
|
+
operator: between
|
|
15993
|
+
start: YYYY-MM-DD
|
|
15994
|
+
end: YYYY-MM-DD
|
|
15995
|
+
page:
|
|
15996
|
+
size: 20
|
|
15997
|
+
number: 1
|
|
15998
|
+
sort:
|
|
15999
|
+
- field: document_date
|
|
16000
|
+
order: desc
|
|
15921
16001
|
responses:
|
|
15922
16002
|
'200':
|
|
15923
16003
|
description: OK
|
|
@@ -15926,7 +16006,7 @@ paths:
|
|
|
15926
16006
|
application/json:
|
|
15927
16007
|
schema:
|
|
15928
16008
|
type: object
|
|
15929
|
-
properties:
|
|
16009
|
+
properties: &ref_441
|
|
15930
16010
|
data:
|
|
15931
16011
|
type: array
|
|
15932
16012
|
items:
|
|
@@ -17448,7 +17528,7 @@ paths:
|
|
|
17448
17528
|
allOf:
|
|
17449
17529
|
- title: productCategories.listrequest
|
|
17450
17530
|
type: object
|
|
17451
|
-
properties: &
|
|
17531
|
+
properties: &ref_442
|
|
17452
17532
|
filter:
|
|
17453
17533
|
type: object
|
|
17454
17534
|
properties:
|
|
@@ -17473,7 +17553,7 @@ paths:
|
|
|
17473
17553
|
allOf:
|
|
17474
17554
|
- title: productCategories.listresponse
|
|
17475
17555
|
type: object
|
|
17476
|
-
properties: &
|
|
17556
|
+
properties: &ref_443
|
|
17477
17557
|
data:
|
|
17478
17558
|
type: array
|
|
17479
17559
|
items:
|
|
@@ -17534,7 +17614,7 @@ paths:
|
|
|
17534
17614
|
allOf:
|
|
17535
17615
|
- title: products.listrequest
|
|
17536
17616
|
type: object
|
|
17537
|
-
properties: &
|
|
17617
|
+
properties: &ref_444
|
|
17538
17618
|
filter:
|
|
17539
17619
|
type: object
|
|
17540
17620
|
properties:
|
|
@@ -17584,7 +17664,7 @@ paths:
|
|
|
17584
17664
|
allOf:
|
|
17585
17665
|
- title: products.listresponse
|
|
17586
17666
|
type: object
|
|
17587
|
-
properties: &
|
|
17667
|
+
properties: &ref_445
|
|
17588
17668
|
data:
|
|
17589
17669
|
type: array
|
|
17590
17670
|
items:
|
|
@@ -17701,10 +17781,10 @@ paths:
|
|
|
17701
17781
|
schema:
|
|
17702
17782
|
allOf:
|
|
17703
17783
|
- title: products.inforequest
|
|
17704
|
-
required: &
|
|
17784
|
+
required: &ref_446
|
|
17705
17785
|
- id
|
|
17706
17786
|
type: object
|
|
17707
|
-
properties: &
|
|
17787
|
+
properties: &ref_447
|
|
17708
17788
|
id:
|
|
17709
17789
|
type: string
|
|
17710
17790
|
example: 6fac0bf0-e803-424e-af67-76863a3d7d16
|
|
@@ -17729,7 +17809,7 @@ paths:
|
|
|
17729
17809
|
allOf:
|
|
17730
17810
|
- title: products.inforesponse
|
|
17731
17811
|
type: object
|
|
17732
|
-
properties: &
|
|
17812
|
+
properties: &ref_448
|
|
17733
17813
|
data:
|
|
17734
17814
|
type: object
|
|
17735
17815
|
properties:
|
|
@@ -18020,11 +18100,11 @@ paths:
|
|
|
18020
18100
|
example: d905ff57-e866-0f59-9d1e-1fd4538bfae1
|
|
18021
18101
|
price:
|
|
18022
18102
|
title: ProductPriceWrite
|
|
18023
|
-
required: &
|
|
18103
|
+
required: &ref_449
|
|
18024
18104
|
- amount
|
|
18025
18105
|
- currency
|
|
18026
18106
|
type: object
|
|
18027
|
-
properties: &
|
|
18107
|
+
properties: &ref_450
|
|
18028
18108
|
amount:
|
|
18029
18109
|
type: number
|
|
18030
18110
|
example: 100
|
|
@@ -18051,11 +18131,11 @@ paths:
|
|
|
18051
18131
|
description: Only available when stock management feature is enabled
|
|
18052
18132
|
allOf:
|
|
18053
18133
|
- title: StockThreshold
|
|
18054
|
-
required: &
|
|
18134
|
+
required: &ref_451
|
|
18055
18135
|
- minimum
|
|
18056
18136
|
- action
|
|
18057
18137
|
type: object
|
|
18058
|
-
properties: &
|
|
18138
|
+
properties: &ref_452
|
|
18059
18139
|
minimum:
|
|
18060
18140
|
type: number
|
|
18061
18141
|
description: Cannot be negative
|
|
@@ -18101,7 +18181,7 @@ paths:
|
|
|
18101
18181
|
allOf:
|
|
18102
18182
|
- title: products.addresponse
|
|
18103
18183
|
type: object
|
|
18104
|
-
properties: &
|
|
18184
|
+
properties: &ref_453
|
|
18105
18185
|
data:
|
|
18106
18186
|
title: TypeAndId
|
|
18107
18187
|
type: object
|
|
@@ -18130,10 +18210,10 @@ paths:
|
|
|
18130
18210
|
schema:
|
|
18131
18211
|
allOf:
|
|
18132
18212
|
- title: products.updaterequest
|
|
18133
|
-
required: &
|
|
18213
|
+
required: &ref_454
|
|
18134
18214
|
- id
|
|
18135
18215
|
type: object
|
|
18136
|
-
properties: &
|
|
18216
|
+
properties: &ref_455
|
|
18137
18217
|
id:
|
|
18138
18218
|
type: string
|
|
18139
18219
|
example: 71e91f91-b222-033f-8c7e-59bcc1521e3d
|
|
@@ -18284,10 +18364,10 @@ paths:
|
|
|
18284
18364
|
schema:
|
|
18285
18365
|
allOf:
|
|
18286
18366
|
- title: products.deleterequest
|
|
18287
|
-
required: &
|
|
18367
|
+
required: &ref_456
|
|
18288
18368
|
- id
|
|
18289
18369
|
type: object
|
|
18290
|
-
properties: &
|
|
18370
|
+
properties: &ref_457
|
|
18291
18371
|
id:
|
|
18292
18372
|
type: string
|
|
18293
18373
|
example: 71e91f91-b222-033f-8c7e-59bcc1521e3d
|
|
@@ -18330,7 +18410,7 @@ paths:
|
|
|
18330
18410
|
allOf:
|
|
18331
18411
|
- title: unitsOfMeasure.listresponse
|
|
18332
18412
|
type: object
|
|
18333
|
-
properties: &
|
|
18413
|
+
properties: &ref_458
|
|
18334
18414
|
data:
|
|
18335
18415
|
type: array
|
|
18336
18416
|
items:
|
|
@@ -18363,7 +18443,7 @@ paths:
|
|
|
18363
18443
|
allOf:
|
|
18364
18444
|
- title: priceLists.listrequest
|
|
18365
18445
|
type: object
|
|
18366
|
-
properties: &
|
|
18446
|
+
properties: &ref_459
|
|
18367
18447
|
filter:
|
|
18368
18448
|
type: object
|
|
18369
18449
|
properties:
|
|
@@ -18392,7 +18472,7 @@ paths:
|
|
|
18392
18472
|
allOf:
|
|
18393
18473
|
- title: priceLists.listresponse
|
|
18394
18474
|
type: object
|
|
18395
|
-
properties: &
|
|
18475
|
+
properties: &ref_460
|
|
18396
18476
|
data:
|
|
18397
18477
|
type: array
|
|
18398
18478
|
items:
|
|
@@ -18439,7 +18519,7 @@ paths:
|
|
|
18439
18519
|
allOf:
|
|
18440
18520
|
- title: projects.listrequest
|
|
18441
18521
|
type: object
|
|
18442
|
-
properties: &
|
|
18522
|
+
properties: &ref_461
|
|
18443
18523
|
filter:
|
|
18444
18524
|
type: object
|
|
18445
18525
|
properties:
|
|
@@ -18524,7 +18604,7 @@ paths:
|
|
|
18524
18604
|
allOf:
|
|
18525
18605
|
- title: projects.listresponse
|
|
18526
18606
|
type: object
|
|
18527
|
-
properties: &
|
|
18607
|
+
properties: &ref_462
|
|
18528
18608
|
data:
|
|
18529
18609
|
type: array
|
|
18530
18610
|
items:
|
|
@@ -18759,10 +18839,10 @@ paths:
|
|
|
18759
18839
|
schema:
|
|
18760
18840
|
allOf:
|
|
18761
18841
|
- title: projects.inforequest
|
|
18762
|
-
required: &
|
|
18842
|
+
required: &ref_463
|
|
18763
18843
|
- id
|
|
18764
18844
|
type: object
|
|
18765
|
-
properties: &
|
|
18845
|
+
properties: &ref_464
|
|
18766
18846
|
id:
|
|
18767
18847
|
type: string
|
|
18768
18848
|
example: 8a04371b-2ffb-407b-9b24-d5b5452009c7
|
|
@@ -18781,7 +18861,7 @@ paths:
|
|
|
18781
18861
|
allOf:
|
|
18782
18862
|
- title: projects.inforesponse
|
|
18783
18863
|
type: object
|
|
18784
|
-
properties: &
|
|
18864
|
+
properties: &ref_465
|
|
18785
18865
|
data:
|
|
18786
18866
|
type: object
|
|
18787
18867
|
properties:
|
|
@@ -19017,13 +19097,13 @@ paths:
|
|
|
19017
19097
|
schema:
|
|
19018
19098
|
allOf:
|
|
19019
19099
|
- title: projects.createrequest
|
|
19020
|
-
required: &
|
|
19100
|
+
required: &ref_466
|
|
19021
19101
|
- title
|
|
19022
19102
|
- starts_on
|
|
19023
19103
|
- milestones
|
|
19024
19104
|
- participants
|
|
19025
19105
|
type: object
|
|
19026
|
-
properties: &
|
|
19106
|
+
properties: &ref_467
|
|
19027
19107
|
title:
|
|
19028
19108
|
type: string
|
|
19029
19109
|
example: New company website
|
|
@@ -19171,10 +19251,10 @@ paths:
|
|
|
19171
19251
|
schema:
|
|
19172
19252
|
allOf:
|
|
19173
19253
|
- title: projects.updaterequest
|
|
19174
|
-
required: &
|
|
19254
|
+
required: &ref_468
|
|
19175
19255
|
- id
|
|
19176
19256
|
type: object
|
|
19177
|
-
properties: &
|
|
19257
|
+
properties: &ref_469
|
|
19178
19258
|
id:
|
|
19179
19259
|
type: string
|
|
19180
19260
|
example: dcc2e8ed-51be-4cb6-9c01-034aedac86fd
|
|
@@ -19272,10 +19352,10 @@ paths:
|
|
|
19272
19352
|
schema:
|
|
19273
19353
|
allOf:
|
|
19274
19354
|
- title: projects.closerequest
|
|
19275
|
-
required: &
|
|
19355
|
+
required: &ref_470
|
|
19276
19356
|
- id
|
|
19277
19357
|
type: object
|
|
19278
|
-
properties: &
|
|
19358
|
+
properties: &ref_471
|
|
19279
19359
|
id:
|
|
19280
19360
|
type: string
|
|
19281
19361
|
example: 01548b10-4932-4a18-8a89-005ad09db2c8
|
|
@@ -19338,10 +19418,10 @@ paths:
|
|
|
19338
19418
|
schema:
|
|
19339
19419
|
allOf:
|
|
19340
19420
|
- title: projects.deleterequest
|
|
19341
|
-
required: &
|
|
19421
|
+
required: &ref_472
|
|
19342
19422
|
- id
|
|
19343
19423
|
type: object
|
|
19344
|
-
properties: &
|
|
19424
|
+
properties: &ref_473
|
|
19345
19425
|
id:
|
|
19346
19426
|
type: string
|
|
19347
19427
|
example: 01548b10-4932-4a18-8a89-005ad09db2c8
|
|
@@ -19371,11 +19451,11 @@ paths:
|
|
|
19371
19451
|
schema:
|
|
19372
19452
|
allOf:
|
|
19373
19453
|
- title: projects.addParticipantrequest
|
|
19374
|
-
required: &
|
|
19454
|
+
required: &ref_474
|
|
19375
19455
|
- id
|
|
19376
19456
|
- participant
|
|
19377
19457
|
type: object
|
|
19378
|
-
properties: &
|
|
19458
|
+
properties: &ref_475
|
|
19379
19459
|
id:
|
|
19380
19460
|
type: string
|
|
19381
19461
|
example: 8dbfa9db-c53f-410c-97d3-755b19685809
|
|
@@ -19421,11 +19501,11 @@ paths:
|
|
|
19421
19501
|
schema:
|
|
19422
19502
|
allOf:
|
|
19423
19503
|
- title: projects.updateParticipantrequest
|
|
19424
|
-
required: &
|
|
19504
|
+
required: &ref_476
|
|
19425
19505
|
- id
|
|
19426
19506
|
- role
|
|
19427
19507
|
type: object
|
|
19428
|
-
properties: &
|
|
19508
|
+
properties: &ref_477
|
|
19429
19509
|
id:
|
|
19430
19510
|
type: string
|
|
19431
19511
|
example: 55fbe14f-7399-48e5-b4e0-64b7f5c50451
|
|
@@ -19472,7 +19552,7 @@ paths:
|
|
|
19472
19552
|
allOf:
|
|
19473
19553
|
- title: milestones.listrequest
|
|
19474
19554
|
type: object
|
|
19475
|
-
properties: &
|
|
19555
|
+
properties: &ref_478
|
|
19476
19556
|
filter:
|
|
19477
19557
|
type: object
|
|
19478
19558
|
properties:
|
|
@@ -19559,7 +19639,7 @@ paths:
|
|
|
19559
19639
|
allOf:
|
|
19560
19640
|
- title: milestones.listresponse
|
|
19561
19641
|
type: object
|
|
19562
|
-
properties: &
|
|
19642
|
+
properties: &ref_479
|
|
19563
19643
|
data:
|
|
19564
19644
|
type: array
|
|
19565
19645
|
items:
|
|
@@ -19783,10 +19863,10 @@ paths:
|
|
|
19783
19863
|
schema:
|
|
19784
19864
|
allOf:
|
|
19785
19865
|
- title: milestones.inforequest
|
|
19786
|
-
required: &
|
|
19866
|
+
required: &ref_480
|
|
19787
19867
|
- id
|
|
19788
19868
|
type: object
|
|
19789
|
-
properties: &
|
|
19869
|
+
properties: &ref_481
|
|
19790
19870
|
id:
|
|
19791
19871
|
type: string
|
|
19792
19872
|
example: 64349fa2-6ca2-4b19-82e6-d3258ceab2d8
|
|
@@ -19805,7 +19885,7 @@ paths:
|
|
|
19805
19885
|
allOf:
|
|
19806
19886
|
- title: milestones.inforesponse
|
|
19807
19887
|
type: object
|
|
19808
|
-
properties: &
|
|
19888
|
+
properties: &ref_482
|
|
19809
19889
|
data:
|
|
19810
19890
|
type: object
|
|
19811
19891
|
properties:
|
|
@@ -19999,13 +20079,13 @@ paths:
|
|
|
19999
20079
|
schema:
|
|
20000
20080
|
allOf:
|
|
20001
20081
|
- title: milestones.createrequest
|
|
20002
|
-
required: &
|
|
20082
|
+
required: &ref_483
|
|
20003
20083
|
- project_id
|
|
20004
20084
|
- due_on
|
|
20005
20085
|
- name
|
|
20006
20086
|
- responsible_user_id
|
|
20007
20087
|
type: object
|
|
20008
|
-
properties: &
|
|
20088
|
+
properties: &ref_484
|
|
20009
20089
|
project_id:
|
|
20010
20090
|
type: string
|
|
20011
20091
|
example: 1c159f98-4b07-438a-9f42-fb4206b9530d
|
|
@@ -20035,7 +20115,7 @@ paths:
|
|
|
20035
20115
|
type: object
|
|
20036
20116
|
properties: *ref_24
|
|
20037
20117
|
description: ''
|
|
20038
|
-
oneOf: &
|
|
20118
|
+
oneOf: &ref_485
|
|
20039
20119
|
- type: object
|
|
20040
20120
|
title: With budget
|
|
20041
20121
|
properties:
|
|
@@ -20103,7 +20183,7 @@ paths:
|
|
|
20103
20183
|
allOf:
|
|
20104
20184
|
- title: milestones.createresponse
|
|
20105
20185
|
type: object
|
|
20106
|
-
properties: &
|
|
20186
|
+
properties: &ref_486
|
|
20107
20187
|
data:
|
|
20108
20188
|
title: TypeAndId
|
|
20109
20189
|
type: object
|
|
@@ -20132,10 +20212,10 @@ paths:
|
|
|
20132
20212
|
schema:
|
|
20133
20213
|
allOf:
|
|
20134
20214
|
- title: milestones.updaterequest
|
|
20135
|
-
required: &
|
|
20215
|
+
required: &ref_487
|
|
20136
20216
|
- id
|
|
20137
20217
|
type: object
|
|
20138
|
-
properties: &
|
|
20218
|
+
properties: &ref_488
|
|
20139
20219
|
id:
|
|
20140
20220
|
type: string
|
|
20141
20221
|
example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
|
|
@@ -20212,10 +20292,10 @@ paths:
|
|
|
20212
20292
|
schema:
|
|
20213
20293
|
allOf:
|
|
20214
20294
|
- title: milestones.deleterequest
|
|
20215
|
-
required: &
|
|
20295
|
+
required: &ref_489
|
|
20216
20296
|
- id
|
|
20217
20297
|
type: object
|
|
20218
|
-
properties: &
|
|
20298
|
+
properties: &ref_490
|
|
20219
20299
|
id:
|
|
20220
20300
|
type: string
|
|
20221
20301
|
example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
|
|
@@ -20245,10 +20325,10 @@ paths:
|
|
|
20245
20325
|
schema:
|
|
20246
20326
|
allOf:
|
|
20247
20327
|
- title: milestones.closerequest
|
|
20248
|
-
required: &
|
|
20328
|
+
required: &ref_491
|
|
20249
20329
|
- id
|
|
20250
20330
|
type: object
|
|
20251
|
-
properties: &
|
|
20331
|
+
properties: &ref_492
|
|
20252
20332
|
id:
|
|
20253
20333
|
type: string
|
|
20254
20334
|
example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
|
|
@@ -20278,10 +20358,10 @@ paths:
|
|
|
20278
20358
|
schema:
|
|
20279
20359
|
allOf:
|
|
20280
20360
|
- title: milestones.openrequest
|
|
20281
|
-
required: &
|
|
20361
|
+
required: &ref_493
|
|
20282
20362
|
- id
|
|
20283
20363
|
type: object
|
|
20284
|
-
properties: &
|
|
20364
|
+
properties: &ref_494
|
|
20285
20365
|
id:
|
|
20286
20366
|
type: string
|
|
20287
20367
|
example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
|
|
@@ -20312,7 +20392,7 @@ paths:
|
|
|
20312
20392
|
allOf:
|
|
20313
20393
|
- title: projects-v2.listrequest
|
|
20314
20394
|
type: object
|
|
20315
|
-
properties: &
|
|
20395
|
+
properties: &ref_495
|
|
20316
20396
|
filter:
|
|
20317
20397
|
type: object
|
|
20318
20398
|
properties:
|
|
@@ -20450,7 +20530,7 @@ paths:
|
|
|
20450
20530
|
allOf:
|
|
20451
20531
|
- title: projects-v2.listresponse
|
|
20452
20532
|
type: object
|
|
20453
|
-
properties: &
|
|
20533
|
+
properties: &ref_496
|
|
20454
20534
|
data:
|
|
20455
20535
|
type: array
|
|
20456
20536
|
items:
|
|
@@ -20939,10 +21019,10 @@ paths:
|
|
|
20939
21019
|
schema:
|
|
20940
21020
|
allOf:
|
|
20941
21021
|
- title: projects-v2.inforequest
|
|
20942
|
-
required: &
|
|
21022
|
+
required: &ref_497
|
|
20943
21023
|
- id
|
|
20944
21024
|
type: object
|
|
20945
|
-
properties: &
|
|
21025
|
+
properties: &ref_498
|
|
20946
21026
|
id:
|
|
20947
21027
|
type: string
|
|
20948
21028
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -20967,7 +21047,7 @@ paths:
|
|
|
20967
21047
|
allOf:
|
|
20968
21048
|
- title: projects.inforesponse1
|
|
20969
21049
|
type: object
|
|
20970
|
-
properties: &
|
|
21050
|
+
properties: &ref_499
|
|
20971
21051
|
data:
|
|
20972
21052
|
type: object
|
|
20973
21053
|
properties:
|
|
@@ -21472,10 +21552,10 @@ paths:
|
|
|
21472
21552
|
schema:
|
|
21473
21553
|
allOf:
|
|
21474
21554
|
- title: projects-v2.createrequest
|
|
21475
|
-
required: &
|
|
21555
|
+
required: &ref_500
|
|
21476
21556
|
- title
|
|
21477
21557
|
type: object
|
|
21478
|
-
properties: &
|
|
21558
|
+
properties: &ref_501
|
|
21479
21559
|
title:
|
|
21480
21560
|
type: string
|
|
21481
21561
|
example: My cool new project
|
|
@@ -21792,10 +21872,10 @@ paths:
|
|
|
21792
21872
|
schema:
|
|
21793
21873
|
allOf:
|
|
21794
21874
|
- title: projects-v2.updaterequest
|
|
21795
|
-
required: &
|
|
21875
|
+
required: &ref_502
|
|
21796
21876
|
- id
|
|
21797
21877
|
type: object
|
|
21798
|
-
properties: &
|
|
21878
|
+
properties: &ref_503
|
|
21799
21879
|
id:
|
|
21800
21880
|
type: string
|
|
21801
21881
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -21982,11 +22062,11 @@ paths:
|
|
|
21982
22062
|
schema:
|
|
21983
22063
|
allOf:
|
|
21984
22064
|
- title: projects-v2.closerequest
|
|
21985
|
-
required: &
|
|
22065
|
+
required: &ref_504
|
|
21986
22066
|
- id
|
|
21987
22067
|
- closing_strategy
|
|
21988
22068
|
type: object
|
|
21989
|
-
properties: &
|
|
22069
|
+
properties: &ref_505
|
|
21990
22070
|
id:
|
|
21991
22071
|
type: string
|
|
21992
22072
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -22052,11 +22132,11 @@ paths:
|
|
|
22052
22132
|
schema:
|
|
22053
22133
|
allOf:
|
|
22054
22134
|
- title: projects-v2.duplicaterequest
|
|
22055
|
-
required: &
|
|
22135
|
+
required: &ref_506
|
|
22056
22136
|
- id
|
|
22057
22137
|
- title
|
|
22058
22138
|
type: object
|
|
22059
|
-
properties: &
|
|
22139
|
+
properties: &ref_507
|
|
22060
22140
|
id:
|
|
22061
22141
|
type: string
|
|
22062
22142
|
example: 81df9996-6d2c-4844-86d6-202c08d2837e
|
|
@@ -22080,7 +22160,7 @@ paths:
|
|
|
22080
22160
|
allOf:
|
|
22081
22161
|
- title: projects-v2.duplicateresponse
|
|
22082
22162
|
type: object
|
|
22083
|
-
properties: &
|
|
22163
|
+
properties: &ref_508
|
|
22084
22164
|
data:
|
|
22085
22165
|
title: TypeAndId
|
|
22086
22166
|
type: object
|
|
@@ -22109,11 +22189,11 @@ paths:
|
|
|
22109
22189
|
schema:
|
|
22110
22190
|
allOf:
|
|
22111
22191
|
- title: projects-v2.deleterequest
|
|
22112
|
-
required: &
|
|
22192
|
+
required: &ref_509
|
|
22113
22193
|
- id
|
|
22114
22194
|
- delete_strategy
|
|
22115
22195
|
type: object
|
|
22116
|
-
properties: &
|
|
22196
|
+
properties: &ref_510
|
|
22117
22197
|
id:
|
|
22118
22198
|
type: string
|
|
22119
22199
|
example: 81df9996-6d2c-4844-86d6-202c08d2837e
|
|
@@ -22152,11 +22232,11 @@ paths:
|
|
|
22152
22232
|
schema:
|
|
22153
22233
|
allOf:
|
|
22154
22234
|
- title: projects-v2.addOwnerrequest
|
|
22155
|
-
required: &
|
|
22235
|
+
required: &ref_511
|
|
22156
22236
|
- id
|
|
22157
22237
|
- user_id
|
|
22158
22238
|
type: object
|
|
22159
|
-
properties: &
|
|
22239
|
+
properties: &ref_512
|
|
22160
22240
|
id:
|
|
22161
22241
|
type: string
|
|
22162
22242
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -22191,11 +22271,11 @@ paths:
|
|
|
22191
22271
|
schema:
|
|
22192
22272
|
allOf:
|
|
22193
22273
|
- title: projects-v2.removeOwnerrequest
|
|
22194
|
-
required: &
|
|
22274
|
+
required: &ref_513
|
|
22195
22275
|
- id
|
|
22196
22276
|
- user_id
|
|
22197
22277
|
type: object
|
|
22198
|
-
properties: &
|
|
22278
|
+
properties: &ref_514
|
|
22199
22279
|
id:
|
|
22200
22280
|
type: string
|
|
22201
22281
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -22230,11 +22310,11 @@ paths:
|
|
|
22230
22310
|
schema:
|
|
22231
22311
|
allOf:
|
|
22232
22312
|
- title: projects-v2.assignrequest
|
|
22233
|
-
required: &
|
|
22313
|
+
required: &ref_515
|
|
22234
22314
|
- id
|
|
22235
22315
|
- assignee
|
|
22236
22316
|
type: object
|
|
22237
|
-
properties: &
|
|
22317
|
+
properties: &ref_516
|
|
22238
22318
|
id:
|
|
22239
22319
|
type: string
|
|
22240
22320
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -22286,11 +22366,11 @@ paths:
|
|
|
22286
22366
|
schema:
|
|
22287
22367
|
allOf:
|
|
22288
22368
|
- title: projects-v2.unassignrequest
|
|
22289
|
-
required: &
|
|
22369
|
+
required: &ref_517
|
|
22290
22370
|
- id
|
|
22291
22371
|
- assignee
|
|
22292
22372
|
type: object
|
|
22293
|
-
properties: &
|
|
22373
|
+
properties: &ref_518
|
|
22294
22374
|
id:
|
|
22295
22375
|
type: string
|
|
22296
22376
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -22342,11 +22422,11 @@ paths:
|
|
|
22342
22422
|
schema:
|
|
22343
22423
|
allOf:
|
|
22344
22424
|
- title: projects-v2.addCustomerrequest
|
|
22345
|
-
required: &
|
|
22425
|
+
required: &ref_519
|
|
22346
22426
|
- id
|
|
22347
22427
|
- customer
|
|
22348
22428
|
type: object
|
|
22349
|
-
properties: &
|
|
22429
|
+
properties: &ref_520
|
|
22350
22430
|
id:
|
|
22351
22431
|
type: string
|
|
22352
22432
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -22387,11 +22467,11 @@ paths:
|
|
|
22387
22467
|
schema:
|
|
22388
22468
|
allOf:
|
|
22389
22469
|
- title: projects-v2.removeCustomerrequest
|
|
22390
|
-
required: &
|
|
22470
|
+
required: &ref_521
|
|
22391
22471
|
- id
|
|
22392
22472
|
- customer
|
|
22393
22473
|
type: object
|
|
22394
|
-
properties: &
|
|
22474
|
+
properties: &ref_522
|
|
22395
22475
|
id:
|
|
22396
22476
|
type: string
|
|
22397
22477
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -22432,11 +22512,11 @@ paths:
|
|
|
22432
22512
|
schema:
|
|
22433
22513
|
allOf:
|
|
22434
22514
|
- title: projects-v2.addDealrequest
|
|
22435
|
-
required: &
|
|
22515
|
+
required: &ref_523
|
|
22436
22516
|
- id
|
|
22437
22517
|
- deal_id
|
|
22438
22518
|
type: object
|
|
22439
|
-
properties: &
|
|
22519
|
+
properties: &ref_524
|
|
22440
22520
|
id:
|
|
22441
22521
|
type: string
|
|
22442
22522
|
example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
|
|
@@ -22471,11 +22551,11 @@ paths:
|
|
|
22471
22551
|
schema:
|
|
22472
22552
|
allOf:
|
|
22473
22553
|
- title: projects-v2.removeDealrequest
|
|
22474
|
-
required: &
|
|
22554
|
+
required: &ref_525
|
|
22475
22555
|
- id
|
|
22476
22556
|
- deal_id
|
|
22477
22557
|
type: object
|
|
22478
|
-
properties: &
|
|
22558
|
+
properties: &ref_526
|
|
22479
22559
|
id:
|
|
22480
22560
|
type: string
|
|
22481
22561
|
example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
|
|
@@ -22510,11 +22590,11 @@ paths:
|
|
|
22510
22590
|
schema:
|
|
22511
22591
|
allOf:
|
|
22512
22592
|
- title: projects-v2.addQuotationrequest
|
|
22513
|
-
required: &
|
|
22593
|
+
required: &ref_527
|
|
22514
22594
|
- id
|
|
22515
22595
|
- quotation_id
|
|
22516
22596
|
type: object
|
|
22517
|
-
properties: &
|
|
22597
|
+
properties: &ref_528
|
|
22518
22598
|
id:
|
|
22519
22599
|
type: string
|
|
22520
22600
|
example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
|
|
@@ -22549,11 +22629,11 @@ paths:
|
|
|
22549
22629
|
schema:
|
|
22550
22630
|
allOf:
|
|
22551
22631
|
- title: projects-v2.removeQuotationrequest
|
|
22552
|
-
required: &
|
|
22632
|
+
required: &ref_529
|
|
22553
22633
|
- id
|
|
22554
22634
|
- quotation_id
|
|
22555
22635
|
type: object
|
|
22556
|
-
properties: &
|
|
22636
|
+
properties: &ref_530
|
|
22557
22637
|
id:
|
|
22558
22638
|
type: string
|
|
22559
22639
|
example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
|
|
@@ -22588,11 +22668,11 @@ paths:
|
|
|
22588
22668
|
schema:
|
|
22589
22669
|
allOf:
|
|
22590
22670
|
- title: projects-v2_externalParties.addToProjectrequest
|
|
22591
|
-
required: &
|
|
22671
|
+
required: &ref_531
|
|
22592
22672
|
- project_id
|
|
22593
22673
|
- customer
|
|
22594
22674
|
type: object
|
|
22595
|
-
properties: &
|
|
22675
|
+
properties: &ref_532
|
|
22596
22676
|
project_id:
|
|
22597
22677
|
type: string
|
|
22598
22678
|
example: 7257b535-d40f-4699-b3bd-63679379b579
|
|
@@ -22643,10 +22723,10 @@ paths:
|
|
|
22643
22723
|
schema:
|
|
22644
22724
|
allOf:
|
|
22645
22725
|
- title: projects-v2_externalParties.updaterequest
|
|
22646
|
-
required: &
|
|
22726
|
+
required: &ref_533
|
|
22647
22727
|
- id
|
|
22648
22728
|
type: object
|
|
22649
|
-
properties: &
|
|
22729
|
+
properties: &ref_534
|
|
22650
22730
|
id:
|
|
22651
22731
|
type: string
|
|
22652
22732
|
example: 6126596f-6193-445a-935a-60c10df9f632
|
|
@@ -22699,10 +22779,10 @@ paths:
|
|
|
22699
22779
|
schema:
|
|
22700
22780
|
allOf:
|
|
22701
22781
|
- title: projects-v2_externalParties.deleterequest
|
|
22702
|
-
required: &
|
|
22782
|
+
required: &ref_535
|
|
22703
22783
|
- id
|
|
22704
22784
|
type: object
|
|
22705
|
-
properties: &
|
|
22785
|
+
properties: &ref_536
|
|
22706
22786
|
id:
|
|
22707
22787
|
type: string
|
|
22708
22788
|
example: 6126596f-6193-445a-935a-60c10df9f632
|
|
@@ -22732,10 +22812,10 @@ paths:
|
|
|
22732
22812
|
schema:
|
|
22733
22813
|
allOf:
|
|
22734
22814
|
- title: projects-v2_projectLines.listrequest
|
|
22735
|
-
required: &
|
|
22815
|
+
required: &ref_537
|
|
22736
22816
|
- project_id
|
|
22737
22817
|
type: object
|
|
22738
|
-
properties: &
|
|
22818
|
+
properties: &ref_538
|
|
22739
22819
|
project_id:
|
|
22740
22820
|
type: string
|
|
22741
22821
|
example: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -22801,7 +22881,7 @@ paths:
|
|
|
22801
22881
|
allOf:
|
|
22802
22882
|
- title: projects-v2_projectLines.listresponse
|
|
22803
22883
|
type: object
|
|
22804
|
-
properties: &
|
|
22884
|
+
properties: &ref_539
|
|
22805
22885
|
data:
|
|
22806
22886
|
type: array
|
|
22807
22887
|
items:
|
|
@@ -22864,11 +22944,11 @@ paths:
|
|
|
22864
22944
|
schema:
|
|
22865
22945
|
allOf:
|
|
22866
22946
|
- title: projects-v2_projectLines.addToGrouprequest
|
|
22867
|
-
required: &
|
|
22947
|
+
required: &ref_540
|
|
22868
22948
|
- line_id
|
|
22869
22949
|
- group_id
|
|
22870
22950
|
type: object
|
|
22871
|
-
properties: &
|
|
22951
|
+
properties: &ref_541
|
|
22872
22952
|
line_id:
|
|
22873
22953
|
type: string
|
|
22874
22954
|
description: The ID of the task or material. May not be a group.
|
|
@@ -22904,10 +22984,10 @@ paths:
|
|
|
22904
22984
|
schema:
|
|
22905
22985
|
allOf:
|
|
22906
22986
|
- title: projects-v2_projectLines.removeFromGrouprequest
|
|
22907
|
-
required: &
|
|
22987
|
+
required: &ref_542
|
|
22908
22988
|
- line_id
|
|
22909
22989
|
type: object
|
|
22910
|
-
properties: &
|
|
22990
|
+
properties: &ref_543
|
|
22911
22991
|
line_id:
|
|
22912
22992
|
type: string
|
|
22913
22993
|
description: The ID of the task or material. May not be a group.
|
|
@@ -22939,7 +23019,7 @@ paths:
|
|
|
22939
23019
|
allOf:
|
|
22940
23020
|
- title: projects-v2_projectGroups.listrequest
|
|
22941
23021
|
type: object
|
|
22942
|
-
properties: &
|
|
23022
|
+
properties: &ref_544
|
|
22943
23023
|
filter:
|
|
22944
23024
|
type: object
|
|
22945
23025
|
properties:
|
|
@@ -22974,7 +23054,7 @@ paths:
|
|
|
22974
23054
|
allOf:
|
|
22975
23055
|
- title: projects-v2_projectGroups.listresponse
|
|
22976
23056
|
type: object
|
|
22977
|
-
properties: &
|
|
23057
|
+
properties: &ref_545
|
|
22978
23058
|
data:
|
|
22979
23059
|
type: array
|
|
22980
23060
|
items:
|
|
@@ -23266,10 +23346,10 @@ paths:
|
|
|
23266
23346
|
schema:
|
|
23267
23347
|
allOf:
|
|
23268
23348
|
- title: projects-v2_projectGroups.inforequest
|
|
23269
|
-
required: &
|
|
23349
|
+
required: &ref_546
|
|
23270
23350
|
- id
|
|
23271
23351
|
type: object
|
|
23272
|
-
properties: &
|
|
23352
|
+
properties: &ref_547
|
|
23273
23353
|
id:
|
|
23274
23354
|
type: string
|
|
23275
23355
|
example: cfe2666c-b0f4-4e85-8d6f-9e1284706d0a
|
|
@@ -23288,7 +23368,7 @@ paths:
|
|
|
23288
23368
|
allOf:
|
|
23289
23369
|
- title: projects-v2_projectGroups.inforesponse
|
|
23290
23370
|
type: object
|
|
23291
|
-
properties: &
|
|
23371
|
+
properties: &ref_548
|
|
23292
23372
|
data:
|
|
23293
23373
|
type: object
|
|
23294
23374
|
properties:
|
|
@@ -23579,11 +23659,11 @@ paths:
|
|
|
23579
23659
|
schema:
|
|
23580
23660
|
allOf:
|
|
23581
23661
|
- title: projects-v2_projectGroups.createrequest
|
|
23582
|
-
required: &
|
|
23662
|
+
required: &ref_549
|
|
23583
23663
|
- project_id
|
|
23584
23664
|
- title
|
|
23585
23665
|
type: object
|
|
23586
|
-
properties: &
|
|
23666
|
+
properties: &ref_550
|
|
23587
23667
|
project_id:
|
|
23588
23668
|
type: string
|
|
23589
23669
|
example: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -23708,7 +23788,7 @@ paths:
|
|
|
23708
23788
|
allOf:
|
|
23709
23789
|
- title: projects-v2_projectGroups.createresponse
|
|
23710
23790
|
type: object
|
|
23711
|
-
properties: &
|
|
23791
|
+
properties: &ref_551
|
|
23712
23792
|
data:
|
|
23713
23793
|
title: TypeAndId
|
|
23714
23794
|
type: object
|
|
@@ -23737,10 +23817,10 @@ paths:
|
|
|
23737
23817
|
schema:
|
|
23738
23818
|
allOf:
|
|
23739
23819
|
- title: projects-v2_projectGroups.updaterequest
|
|
23740
|
-
required: &
|
|
23820
|
+
required: &ref_552
|
|
23741
23821
|
- id
|
|
23742
23822
|
type: object
|
|
23743
|
-
properties: &
|
|
23823
|
+
properties: &ref_553
|
|
23744
23824
|
id:
|
|
23745
23825
|
type: string
|
|
23746
23826
|
example: e8478f2c-05a1-4e69-b3c4-e08507640f01
|
|
@@ -23870,10 +23950,10 @@ paths:
|
|
|
23870
23950
|
schema:
|
|
23871
23951
|
allOf:
|
|
23872
23952
|
- title: projects-v2_projectGroups.duplicaterequest
|
|
23873
|
-
required: &
|
|
23953
|
+
required: &ref_554
|
|
23874
23954
|
- origin_id
|
|
23875
23955
|
type: object
|
|
23876
|
-
properties: &
|
|
23956
|
+
properties: &ref_555
|
|
23877
23957
|
origin_id:
|
|
23878
23958
|
type: string
|
|
23879
23959
|
description: The id of the group that is being duplicated
|
|
@@ -23893,7 +23973,7 @@ paths:
|
|
|
23893
23973
|
allOf:
|
|
23894
23974
|
- title: projects-v2_projectGroups.duplicateresponse
|
|
23895
23975
|
type: object
|
|
23896
|
-
properties: &
|
|
23976
|
+
properties: &ref_556
|
|
23897
23977
|
data:
|
|
23898
23978
|
title: TypeAndId
|
|
23899
23979
|
type: object
|
|
@@ -23922,11 +24002,11 @@ paths:
|
|
|
23922
24002
|
schema:
|
|
23923
24003
|
allOf:
|
|
23924
24004
|
- title: projects-v2_projectGroups.deleterequest
|
|
23925
|
-
required: &
|
|
24005
|
+
required: &ref_557
|
|
23926
24006
|
- id
|
|
23927
24007
|
- delete_strategy
|
|
23928
24008
|
type: object
|
|
23929
|
-
properties: &
|
|
24009
|
+
properties: &ref_558
|
|
23930
24010
|
id:
|
|
23931
24011
|
type: string
|
|
23932
24012
|
example: 01866e6f-f264-7fe5-8b7c-a3f739fa292c
|
|
@@ -23965,11 +24045,11 @@ paths:
|
|
|
23965
24045
|
schema:
|
|
23966
24046
|
allOf:
|
|
23967
24047
|
- title: projects-v2_projectGroups.assignrequest
|
|
23968
|
-
required: &
|
|
24048
|
+
required: &ref_559
|
|
23969
24049
|
- id
|
|
23970
24050
|
- assignee
|
|
23971
24051
|
type: object
|
|
23972
|
-
properties: &
|
|
24052
|
+
properties: &ref_560
|
|
23973
24053
|
id:
|
|
23974
24054
|
type: string
|
|
23975
24055
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -24021,11 +24101,11 @@ paths:
|
|
|
24021
24101
|
schema:
|
|
24022
24102
|
allOf:
|
|
24023
24103
|
- title: projects-v2_projectGroups.unassignrequest
|
|
24024
|
-
required: &
|
|
24104
|
+
required: &ref_561
|
|
24025
24105
|
- id
|
|
24026
24106
|
- assignee
|
|
24027
24107
|
type: object
|
|
24028
|
-
properties: &
|
|
24108
|
+
properties: &ref_562
|
|
24029
24109
|
id:
|
|
24030
24110
|
type: string
|
|
24031
24111
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -24078,7 +24158,7 @@ paths:
|
|
|
24078
24158
|
allOf:
|
|
24079
24159
|
- title: projects-v2_tasks.listrequest
|
|
24080
24160
|
type: object
|
|
24081
|
-
properties: &
|
|
24161
|
+
properties: &ref_563
|
|
24082
24162
|
filter:
|
|
24083
24163
|
type: object
|
|
24084
24164
|
properties:
|
|
@@ -24117,7 +24197,7 @@ paths:
|
|
|
24117
24197
|
allOf:
|
|
24118
24198
|
- title: projects-v2_tasks.listresponse
|
|
24119
24199
|
type: object
|
|
24120
|
-
properties: &
|
|
24200
|
+
properties: &ref_564
|
|
24121
24201
|
data:
|
|
24122
24202
|
type: array
|
|
24123
24203
|
items:
|
|
@@ -24506,7 +24586,7 @@ paths:
|
|
|
24506
24586
|
allOf:
|
|
24507
24587
|
- title: projects-v2_tasks.inforesponse
|
|
24508
24588
|
type: object
|
|
24509
|
-
properties: &
|
|
24589
|
+
properties: &ref_565
|
|
24510
24590
|
data:
|
|
24511
24591
|
type: object
|
|
24512
24592
|
properties:
|
|
@@ -24893,11 +24973,11 @@ paths:
|
|
|
24893
24973
|
schema:
|
|
24894
24974
|
allOf:
|
|
24895
24975
|
- title: projects-v2_tasks.createrequest
|
|
24896
|
-
required: &
|
|
24976
|
+
required: &ref_566
|
|
24897
24977
|
- project_id
|
|
24898
24978
|
- title
|
|
24899
24979
|
type: object
|
|
24900
|
-
properties: &
|
|
24980
|
+
properties: &ref_567
|
|
24901
24981
|
project_id:
|
|
24902
24982
|
type: string
|
|
24903
24983
|
example: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -25101,10 +25181,10 @@ paths:
|
|
|
25101
25181
|
schema:
|
|
25102
25182
|
allOf:
|
|
25103
25183
|
- title: projects-v2_tasks.updaterequest
|
|
25104
|
-
required: &
|
|
25184
|
+
required: &ref_568
|
|
25105
25185
|
- id
|
|
25106
25186
|
type: object
|
|
25107
|
-
properties: &
|
|
25187
|
+
properties: &ref_569
|
|
25108
25188
|
id:
|
|
25109
25189
|
type: string
|
|
25110
25190
|
example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
|
|
@@ -25276,10 +25356,10 @@ paths:
|
|
|
25276
25356
|
schema:
|
|
25277
25357
|
allOf:
|
|
25278
25358
|
- title: projects-v2_tasks.duplicaterequest
|
|
25279
|
-
required: &
|
|
25359
|
+
required: &ref_570
|
|
25280
25360
|
- origin_id
|
|
25281
25361
|
type: object
|
|
25282
|
-
properties: &
|
|
25362
|
+
properties: &ref_571
|
|
25283
25363
|
origin_id:
|
|
25284
25364
|
type: string
|
|
25285
25365
|
description: The id of the task that is being duplicated
|
|
@@ -25299,7 +25379,7 @@ paths:
|
|
|
25299
25379
|
allOf:
|
|
25300
25380
|
- title: projects-v2_tasks.duplicateresponse
|
|
25301
25381
|
type: object
|
|
25302
|
-
properties: &
|
|
25382
|
+
properties: &ref_572
|
|
25303
25383
|
data:
|
|
25304
25384
|
title: TypeAndId
|
|
25305
25385
|
type: object
|
|
@@ -25328,11 +25408,11 @@ paths:
|
|
|
25328
25408
|
schema:
|
|
25329
25409
|
allOf:
|
|
25330
25410
|
- title: projects-v2_tasks.deleterequest
|
|
25331
|
-
required: &
|
|
25411
|
+
required: &ref_573
|
|
25332
25412
|
- id
|
|
25333
25413
|
- delete_strategy
|
|
25334
25414
|
type: object
|
|
25335
|
-
properties: &
|
|
25415
|
+
properties: &ref_574
|
|
25336
25416
|
id:
|
|
25337
25417
|
type: string
|
|
25338
25418
|
example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
|
|
@@ -25370,11 +25450,11 @@ paths:
|
|
|
25370
25450
|
schema:
|
|
25371
25451
|
allOf:
|
|
25372
25452
|
- title: projects-v2_tasks.assignrequest
|
|
25373
|
-
required: &
|
|
25453
|
+
required: &ref_575
|
|
25374
25454
|
- id
|
|
25375
25455
|
- assignee
|
|
25376
25456
|
type: object
|
|
25377
|
-
properties: &
|
|
25457
|
+
properties: &ref_576
|
|
25378
25458
|
id:
|
|
25379
25459
|
type: string
|
|
25380
25460
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -25426,11 +25506,11 @@ paths:
|
|
|
25426
25506
|
schema:
|
|
25427
25507
|
allOf:
|
|
25428
25508
|
- title: projects-v2_tasks.unassignrequest
|
|
25429
|
-
required: &
|
|
25509
|
+
required: &ref_577
|
|
25430
25510
|
- id
|
|
25431
25511
|
- assignee
|
|
25432
25512
|
type: object
|
|
25433
|
-
properties: &
|
|
25513
|
+
properties: &ref_578
|
|
25434
25514
|
id:
|
|
25435
25515
|
type: string
|
|
25436
25516
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -25483,7 +25563,7 @@ paths:
|
|
|
25483
25563
|
allOf:
|
|
25484
25564
|
- title: projects-v2_materials.listrequest
|
|
25485
25565
|
type: object
|
|
25486
|
-
properties: &
|
|
25566
|
+
properties: &ref_579
|
|
25487
25567
|
filter:
|
|
25488
25568
|
type: object
|
|
25489
25569
|
properties:
|
|
@@ -25512,7 +25592,7 @@ paths:
|
|
|
25512
25592
|
allOf:
|
|
25513
25593
|
- title: projects-v2_materials.listresponse
|
|
25514
25594
|
type: object
|
|
25515
|
-
properties: &
|
|
25595
|
+
properties: &ref_580
|
|
25516
25596
|
data:
|
|
25517
25597
|
type: array
|
|
25518
25598
|
items:
|
|
@@ -25826,10 +25906,10 @@ paths:
|
|
|
25826
25906
|
schema:
|
|
25827
25907
|
allOf:
|
|
25828
25908
|
- title: projects-v2_materials.inforequest
|
|
25829
|
-
required: &
|
|
25909
|
+
required: &ref_581
|
|
25830
25910
|
- id
|
|
25831
25911
|
type: object
|
|
25832
|
-
properties: &
|
|
25912
|
+
properties: &ref_582
|
|
25833
25913
|
id:
|
|
25834
25914
|
type: string
|
|
25835
25915
|
example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
|
|
@@ -25848,7 +25928,7 @@ paths:
|
|
|
25848
25928
|
allOf:
|
|
25849
25929
|
- title: projects-v2_materials.inforesponse
|
|
25850
25930
|
type: object
|
|
25851
|
-
properties: &
|
|
25931
|
+
properties: &ref_583
|
|
25852
25932
|
data:
|
|
25853
25933
|
type: object
|
|
25854
25934
|
properties:
|
|
@@ -26166,11 +26246,11 @@ paths:
|
|
|
26166
26246
|
schema:
|
|
26167
26247
|
allOf:
|
|
26168
26248
|
- title: projects-v2_materials.createrequest
|
|
26169
|
-
required: &
|
|
26249
|
+
required: &ref_584
|
|
26170
26250
|
- project_id
|
|
26171
26251
|
- title
|
|
26172
26252
|
type: object
|
|
26173
|
-
properties: &
|
|
26253
|
+
properties: &ref_585
|
|
26174
26254
|
project_id:
|
|
26175
26255
|
type: string
|
|
26176
26256
|
example: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -26338,7 +26418,7 @@ paths:
|
|
|
26338
26418
|
allOf:
|
|
26339
26419
|
- title: projects-v2_materials.createresponse
|
|
26340
26420
|
type: object
|
|
26341
|
-
properties: &
|
|
26421
|
+
properties: &ref_586
|
|
26342
26422
|
data:
|
|
26343
26423
|
title: TypeAndId
|
|
26344
26424
|
type: object
|
|
@@ -26367,10 +26447,10 @@ paths:
|
|
|
26367
26447
|
schema:
|
|
26368
26448
|
allOf:
|
|
26369
26449
|
- title: projects-v2_materials.updaterequest
|
|
26370
|
-
required: &
|
|
26450
|
+
required: &ref_587
|
|
26371
26451
|
- id
|
|
26372
26452
|
type: object
|
|
26373
|
-
properties: &
|
|
26453
|
+
properties: &ref_588
|
|
26374
26454
|
id:
|
|
26375
26455
|
type: string
|
|
26376
26456
|
example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
|
|
@@ -26524,10 +26604,10 @@ paths:
|
|
|
26524
26604
|
schema:
|
|
26525
26605
|
allOf:
|
|
26526
26606
|
- title: projects-v2_materials.duplicaterequest
|
|
26527
|
-
required: &
|
|
26607
|
+
required: &ref_589
|
|
26528
26608
|
- origin_id
|
|
26529
26609
|
type: object
|
|
26530
|
-
properties: &
|
|
26610
|
+
properties: &ref_590
|
|
26531
26611
|
origin_id:
|
|
26532
26612
|
type: string
|
|
26533
26613
|
description: The id of the material that is being duplicated
|
|
@@ -26547,7 +26627,7 @@ paths:
|
|
|
26547
26627
|
allOf:
|
|
26548
26628
|
- title: projects-v2_materials.duplicateresponse
|
|
26549
26629
|
type: object
|
|
26550
|
-
properties: &
|
|
26630
|
+
properties: &ref_591
|
|
26551
26631
|
data:
|
|
26552
26632
|
title: TypeAndId
|
|
26553
26633
|
type: object
|
|
@@ -26576,10 +26656,10 @@ paths:
|
|
|
26576
26656
|
schema:
|
|
26577
26657
|
allOf:
|
|
26578
26658
|
- title: projects-v2_materials.deleterequest
|
|
26579
|
-
required: &
|
|
26659
|
+
required: &ref_592
|
|
26580
26660
|
- id
|
|
26581
26661
|
type: object
|
|
26582
|
-
properties: &
|
|
26662
|
+
properties: &ref_593
|
|
26583
26663
|
id:
|
|
26584
26664
|
type: string
|
|
26585
26665
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -26609,11 +26689,11 @@ paths:
|
|
|
26609
26689
|
schema:
|
|
26610
26690
|
allOf:
|
|
26611
26691
|
- title: projects-v2_materials.assignrequest
|
|
26612
|
-
required: &
|
|
26692
|
+
required: &ref_594
|
|
26613
26693
|
- id
|
|
26614
26694
|
- assignee
|
|
26615
26695
|
type: object
|
|
26616
|
-
properties: &
|
|
26696
|
+
properties: &ref_595
|
|
26617
26697
|
id:
|
|
26618
26698
|
type: string
|
|
26619
26699
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -26665,11 +26745,11 @@ paths:
|
|
|
26665
26745
|
schema:
|
|
26666
26746
|
allOf:
|
|
26667
26747
|
- title: projects-v2_materials.unassignrequest
|
|
26668
|
-
required: &
|
|
26748
|
+
required: &ref_596
|
|
26669
26749
|
- id
|
|
26670
26750
|
- assignee
|
|
26671
26751
|
type: object
|
|
26672
|
-
properties: &
|
|
26752
|
+
properties: &ref_597
|
|
26673
26753
|
id:
|
|
26674
26754
|
type: string
|
|
26675
26755
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -26722,7 +26802,7 @@ paths:
|
|
|
26722
26802
|
allOf:
|
|
26723
26803
|
- title: tasks.listrequest1
|
|
26724
26804
|
type: object
|
|
26725
|
-
properties: &
|
|
26805
|
+
properties: &ref_598
|
|
26726
26806
|
filter:
|
|
26727
26807
|
type: object
|
|
26728
26808
|
properties:
|
|
@@ -26790,7 +26870,7 @@ paths:
|
|
|
26790
26870
|
allOf:
|
|
26791
26871
|
- title: tasks.listresponse1
|
|
26792
26872
|
type: object
|
|
26793
|
-
properties: &
|
|
26873
|
+
properties: &ref_599
|
|
26794
26874
|
data:
|
|
26795
26875
|
type: array
|
|
26796
26876
|
items:
|
|
@@ -26997,7 +27077,7 @@ paths:
|
|
|
26997
27077
|
allOf:
|
|
26998
27078
|
- title: tasks.inforesponse1
|
|
26999
27079
|
type: object
|
|
27000
|
-
properties: &
|
|
27080
|
+
properties: &ref_600
|
|
27001
27081
|
data:
|
|
27002
27082
|
type: object
|
|
27003
27083
|
properties:
|
|
@@ -27189,12 +27269,12 @@ paths:
|
|
|
27189
27269
|
application/json:
|
|
27190
27270
|
schema:
|
|
27191
27271
|
title: tasks.createrequest1
|
|
27192
|
-
required: &
|
|
27272
|
+
required: &ref_601
|
|
27193
27273
|
- title
|
|
27194
27274
|
- due_on
|
|
27195
27275
|
- work_type_id
|
|
27196
27276
|
type: object
|
|
27197
|
-
properties: &
|
|
27277
|
+
properties: &ref_602
|
|
27198
27278
|
title:
|
|
27199
27279
|
type: string
|
|
27200
27280
|
description:
|
|
@@ -27286,10 +27366,10 @@ paths:
|
|
|
27286
27366
|
application/json:
|
|
27287
27367
|
schema:
|
|
27288
27368
|
title: tasks.updaterequest1
|
|
27289
|
-
required: &
|
|
27369
|
+
required: &ref_603
|
|
27290
27370
|
- id
|
|
27291
27371
|
type: object
|
|
27292
|
-
properties: &
|
|
27372
|
+
properties: &ref_604
|
|
27293
27373
|
id:
|
|
27294
27374
|
type: string
|
|
27295
27375
|
example: 00ed6266-a5bd-4aac-a292-2582017b6400
|
|
@@ -27375,10 +27455,10 @@ paths:
|
|
|
27375
27455
|
schema:
|
|
27376
27456
|
allOf:
|
|
27377
27457
|
- title: tasks.completerequest
|
|
27378
|
-
required: &
|
|
27458
|
+
required: &ref_605
|
|
27379
27459
|
- id
|
|
27380
27460
|
type: object
|
|
27381
|
-
properties: &
|
|
27461
|
+
properties: &ref_606
|
|
27382
27462
|
id:
|
|
27383
27463
|
type: string
|
|
27384
27464
|
example: 46156648-87c6-478d-8aa7-1dc3a00dacab
|
|
@@ -27408,10 +27488,10 @@ paths:
|
|
|
27408
27488
|
schema:
|
|
27409
27489
|
allOf:
|
|
27410
27490
|
- title: tasks.reopenrequest
|
|
27411
|
-
required: &
|
|
27491
|
+
required: &ref_607
|
|
27412
27492
|
- id
|
|
27413
27493
|
type: object
|
|
27414
|
-
properties: &
|
|
27494
|
+
properties: &ref_608
|
|
27415
27495
|
id:
|
|
27416
27496
|
type: string
|
|
27417
27497
|
example: 46156648-87c6-478d-8aa7-1dc3a00dacab
|
|
@@ -27441,10 +27521,10 @@ paths:
|
|
|
27441
27521
|
schema:
|
|
27442
27522
|
allOf:
|
|
27443
27523
|
- title: tasks.deleterequest1
|
|
27444
|
-
required: &
|
|
27524
|
+
required: &ref_609
|
|
27445
27525
|
- id
|
|
27446
27526
|
type: object
|
|
27447
|
-
properties: &
|
|
27527
|
+
properties: &ref_610
|
|
27448
27528
|
id:
|
|
27449
27529
|
type: string
|
|
27450
27530
|
example: 5f0afd8a-8a40-48a4-bbe6-7d0e9c61bb6d
|
|
@@ -27474,12 +27554,12 @@ paths:
|
|
|
27474
27554
|
schema:
|
|
27475
27555
|
allOf:
|
|
27476
27556
|
- title: tasks.schedulerequest
|
|
27477
|
-
required: &
|
|
27557
|
+
required: &ref_611
|
|
27478
27558
|
- id
|
|
27479
27559
|
- starts_at
|
|
27480
27560
|
- ends_at
|
|
27481
27561
|
type: object
|
|
27482
|
-
properties: &
|
|
27562
|
+
properties: &ref_612
|
|
27483
27563
|
id:
|
|
27484
27564
|
type: string
|
|
27485
27565
|
example: 7c70c54e-6e50-4e6a-b5fd-80234eb535cf
|
|
@@ -27508,7 +27588,7 @@ paths:
|
|
|
27508
27588
|
allOf:
|
|
27509
27589
|
- title: tasks.scheduleresponse
|
|
27510
27590
|
type: object
|
|
27511
|
-
properties: &
|
|
27591
|
+
properties: &ref_613
|
|
27512
27592
|
data:
|
|
27513
27593
|
title: TypeAndId
|
|
27514
27594
|
type: object
|
|
@@ -27538,7 +27618,7 @@ paths:
|
|
|
27538
27618
|
allOf:
|
|
27539
27619
|
- title: timeTracking.listrequest
|
|
27540
27620
|
type: object
|
|
27541
|
-
properties: &
|
|
27621
|
+
properties: &ref_614
|
|
27542
27622
|
filter:
|
|
27543
27623
|
type: object
|
|
27544
27624
|
properties:
|
|
@@ -27644,7 +27724,7 @@ paths:
|
|
|
27644
27724
|
allOf:
|
|
27645
27725
|
- title: timeTracking.listresponse
|
|
27646
27726
|
type: object
|
|
27647
|
-
properties: &
|
|
27727
|
+
properties: &ref_615
|
|
27648
27728
|
data:
|
|
27649
27729
|
type: array
|
|
27650
27730
|
items:
|
|
@@ -27862,10 +27942,10 @@ paths:
|
|
|
27862
27942
|
schema:
|
|
27863
27943
|
allOf:
|
|
27864
27944
|
- title: timeTracking.inforequest
|
|
27865
|
-
required: &
|
|
27945
|
+
required: &ref_616
|
|
27866
27946
|
- id
|
|
27867
27947
|
type: object
|
|
27868
|
-
properties: &
|
|
27948
|
+
properties: &ref_617
|
|
27869
27949
|
id:
|
|
27870
27950
|
type: string
|
|
27871
27951
|
example: 6caeea11-aa83-4da9-9859-5b62bbf3a476
|
|
@@ -27890,7 +27970,7 @@ paths:
|
|
|
27890
27970
|
allOf:
|
|
27891
27971
|
- title: timeTracking.inforesponse
|
|
27892
27972
|
type: object
|
|
27893
|
-
properties: &
|
|
27973
|
+
properties: &ref_618
|
|
27894
27974
|
data:
|
|
27895
27975
|
type: object
|
|
27896
27976
|
properties:
|
|
@@ -28087,7 +28167,7 @@ paths:
|
|
|
28087
28167
|
allOf:
|
|
28088
28168
|
- title: timeTracking.addrequest
|
|
28089
28169
|
type: object
|
|
28090
|
-
properties: &
|
|
28170
|
+
properties: &ref_619
|
|
28091
28171
|
work_type_id:
|
|
28092
28172
|
type: string
|
|
28093
28173
|
example: 2175597d-484e-4a1c-a781-cbc3d9f893ba
|
|
@@ -28119,7 +28199,7 @@ paths:
|
|
|
28119
28199
|
type: string
|
|
28120
28200
|
description: To add tracked time for a different user.
|
|
28121
28201
|
example: 87982c96-f2fe-4b05-838c-ff42c0525758
|
|
28122
|
-
oneOf: &
|
|
28202
|
+
oneOf: &ref_620
|
|
28123
28203
|
- type: object
|
|
28124
28204
|
title: With started_at & duration
|
|
28125
28205
|
required:
|
|
@@ -28171,7 +28251,7 @@ paths:
|
|
|
28171
28251
|
allOf:
|
|
28172
28252
|
- title: timeTracking.addresponse
|
|
28173
28253
|
type: object
|
|
28174
|
-
properties: &
|
|
28254
|
+
properties: &ref_621
|
|
28175
28255
|
data:
|
|
28176
28256
|
title: TypeAndId
|
|
28177
28257
|
type: object
|
|
@@ -28197,11 +28277,11 @@ paths:
|
|
|
28197
28277
|
schema:
|
|
28198
28278
|
allOf:
|
|
28199
28279
|
- title: timeTracking.updaterequest
|
|
28200
|
-
required: &
|
|
28280
|
+
required: &ref_622
|
|
28201
28281
|
- id
|
|
28202
28282
|
- duration
|
|
28203
28283
|
type: object
|
|
28204
|
-
properties: &
|
|
28284
|
+
properties: &ref_623
|
|
28205
28285
|
id:
|
|
28206
28286
|
type: string
|
|
28207
28287
|
example: 66621f54-3d0d-420f-8d4b-ddd7fc473bf2
|
|
@@ -28239,7 +28319,7 @@ paths:
|
|
|
28239
28319
|
invoiceable:
|
|
28240
28320
|
type: boolean
|
|
28241
28321
|
example: true
|
|
28242
|
-
oneOf: &
|
|
28322
|
+
oneOf: &ref_624
|
|
28243
28323
|
- type: object
|
|
28244
28324
|
title: Update with started_at
|
|
28245
28325
|
description: Update the timetracking with `started_at` DateTime.
|
|
@@ -28282,10 +28362,10 @@ paths:
|
|
|
28282
28362
|
schema:
|
|
28283
28363
|
allOf:
|
|
28284
28364
|
- title: timeTracking.resumerequest
|
|
28285
|
-
required: &
|
|
28365
|
+
required: &ref_625
|
|
28286
28366
|
- id
|
|
28287
28367
|
type: object
|
|
28288
|
-
properties: &
|
|
28368
|
+
properties: &ref_626
|
|
28289
28369
|
id:
|
|
28290
28370
|
type: string
|
|
28291
28371
|
example: 06dfa08a-b769-4005-a912-45ab885c5737
|
|
@@ -28310,7 +28390,7 @@ paths:
|
|
|
28310
28390
|
allOf:
|
|
28311
28391
|
- title: timeTracking.resumeresponse
|
|
28312
28392
|
type: object
|
|
28313
|
-
properties: &
|
|
28393
|
+
properties: &ref_627
|
|
28314
28394
|
data:
|
|
28315
28395
|
title: TypeAndId
|
|
28316
28396
|
type: object
|
|
@@ -28339,10 +28419,10 @@ paths:
|
|
|
28339
28419
|
schema:
|
|
28340
28420
|
allOf:
|
|
28341
28421
|
- title: timeTracking.deleterequest
|
|
28342
|
-
required: &
|
|
28422
|
+
required: &ref_628
|
|
28343
28423
|
- id
|
|
28344
28424
|
type: object
|
|
28345
|
-
properties: &
|
|
28425
|
+
properties: &ref_629
|
|
28346
28426
|
id:
|
|
28347
28427
|
type: string
|
|
28348
28428
|
example: 6caeea11-aa83-4da9-9859-5b62bbf3a476
|
|
@@ -28375,7 +28455,7 @@ paths:
|
|
|
28375
28455
|
allOf:
|
|
28376
28456
|
- title: timers.currentresponse
|
|
28377
28457
|
type: object
|
|
28378
|
-
properties: &
|
|
28458
|
+
properties: &ref_630
|
|
28379
28459
|
data:
|
|
28380
28460
|
type: object
|
|
28381
28461
|
properties:
|
|
@@ -28461,7 +28541,7 @@ paths:
|
|
|
28461
28541
|
allOf:
|
|
28462
28542
|
- title: timers.startrequest
|
|
28463
28543
|
type: object
|
|
28464
|
-
properties: &
|
|
28544
|
+
properties: &ref_631
|
|
28465
28545
|
work_type_id:
|
|
28466
28546
|
type: string
|
|
28467
28547
|
example: db41328a-7a25-4e85-8fb9-830baacb7f40
|
|
@@ -28517,7 +28597,7 @@ paths:
|
|
|
28517
28597
|
allOf:
|
|
28518
28598
|
- title: timers.startresponse
|
|
28519
28599
|
type: object
|
|
28520
|
-
properties: &
|
|
28600
|
+
properties: &ref_632
|
|
28521
28601
|
data:
|
|
28522
28602
|
title: TypeAndId
|
|
28523
28603
|
type: object
|
|
@@ -28549,7 +28629,7 @@ paths:
|
|
|
28549
28629
|
allOf:
|
|
28550
28630
|
- title: timers.stopresponse
|
|
28551
28631
|
type: object
|
|
28552
|
-
properties: &
|
|
28632
|
+
properties: &ref_633
|
|
28553
28633
|
data:
|
|
28554
28634
|
title: TypeAndId
|
|
28555
28635
|
type: object
|
|
@@ -28579,7 +28659,7 @@ paths:
|
|
|
28579
28659
|
allOf:
|
|
28580
28660
|
- title: timers.updaterequest
|
|
28581
28661
|
type: object
|
|
28582
|
-
properties: &
|
|
28662
|
+
properties: &ref_634
|
|
28583
28663
|
work_type_id:
|
|
28584
28664
|
type: string
|
|
28585
28665
|
nullable: true
|
|
@@ -28653,7 +28733,7 @@ paths:
|
|
|
28653
28733
|
allOf:
|
|
28654
28734
|
- title: tickets.listrequest
|
|
28655
28735
|
type: object
|
|
28656
|
-
properties: &
|
|
28736
|
+
properties: &ref_635
|
|
28657
28737
|
filter:
|
|
28658
28738
|
type: object
|
|
28659
28739
|
properties:
|
|
@@ -28738,7 +28818,7 @@ paths:
|
|
|
28738
28818
|
allOf:
|
|
28739
28819
|
- title: tickets.listresponse
|
|
28740
28820
|
type: object
|
|
28741
|
-
properties: &
|
|
28821
|
+
properties: &ref_636
|
|
28742
28822
|
data:
|
|
28743
28823
|
type: array
|
|
28744
28824
|
items:
|
|
@@ -28873,10 +28953,10 @@ paths:
|
|
|
28873
28953
|
schema:
|
|
28874
28954
|
allOf:
|
|
28875
28955
|
- title: tickets.inforequest
|
|
28876
|
-
required: &
|
|
28956
|
+
required: &ref_637
|
|
28877
28957
|
- id
|
|
28878
28958
|
type: object
|
|
28879
|
-
properties: &
|
|
28959
|
+
properties: &ref_638
|
|
28880
28960
|
id:
|
|
28881
28961
|
type: string
|
|
28882
28962
|
example: 6fac0bf0-e803-424e-af67-76863a3d7d16
|
|
@@ -28895,7 +28975,7 @@ paths:
|
|
|
28895
28975
|
allOf:
|
|
28896
28976
|
- title: tickets.inforesponse
|
|
28897
28977
|
type: object
|
|
28898
|
-
properties: &
|
|
28978
|
+
properties: &ref_639
|
|
28899
28979
|
id:
|
|
28900
28980
|
type: string
|
|
28901
28981
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -29044,12 +29124,12 @@ paths:
|
|
|
29044
29124
|
schema:
|
|
29045
29125
|
allOf:
|
|
29046
29126
|
- title: tickets.createrequest
|
|
29047
|
-
required: &
|
|
29127
|
+
required: &ref_640
|
|
29048
29128
|
- subject
|
|
29049
29129
|
- customer
|
|
29050
29130
|
- ticket_status_id
|
|
29051
29131
|
type: object
|
|
29052
|
-
properties: &
|
|
29132
|
+
properties: &ref_641
|
|
29053
29133
|
subject:
|
|
29054
29134
|
type: string
|
|
29055
29135
|
example: My ticket subject
|
|
@@ -29163,7 +29243,7 @@ paths:
|
|
|
29163
29243
|
allOf:
|
|
29164
29244
|
- title: tickets.createresponse
|
|
29165
29245
|
type: object
|
|
29166
|
-
properties: &
|
|
29246
|
+
properties: &ref_642
|
|
29167
29247
|
data:
|
|
29168
29248
|
title: TypeAndId
|
|
29169
29249
|
type: object
|
|
@@ -29192,10 +29272,10 @@ paths:
|
|
|
29192
29272
|
schema:
|
|
29193
29273
|
allOf:
|
|
29194
29274
|
- title: tickets.updaterequest
|
|
29195
|
-
required: &
|
|
29275
|
+
required: &ref_643
|
|
29196
29276
|
- id
|
|
29197
29277
|
type: object
|
|
29198
|
-
properties: &
|
|
29278
|
+
properties: &ref_644
|
|
29199
29279
|
id:
|
|
29200
29280
|
type: string
|
|
29201
29281
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -29317,7 +29397,7 @@ paths:
|
|
|
29317
29397
|
allOf:
|
|
29318
29398
|
- title: tickets.listMessagesrequest
|
|
29319
29399
|
type: object
|
|
29320
|
-
properties: &
|
|
29400
|
+
properties: &ref_645
|
|
29321
29401
|
id:
|
|
29322
29402
|
type: string
|
|
29323
29403
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -29370,7 +29450,7 @@ paths:
|
|
|
29370
29450
|
allOf:
|
|
29371
29451
|
- title: tickets.listMessagesresponse
|
|
29372
29452
|
type: object
|
|
29373
|
-
properties: &
|
|
29453
|
+
properties: &ref_646
|
|
29374
29454
|
data:
|
|
29375
29455
|
type: array
|
|
29376
29456
|
items:
|
|
@@ -29473,7 +29553,7 @@ paths:
|
|
|
29473
29553
|
allOf:
|
|
29474
29554
|
- title: tickets.getMessagerequest
|
|
29475
29555
|
type: object
|
|
29476
|
-
properties: &
|
|
29556
|
+
properties: &ref_647
|
|
29477
29557
|
message_id:
|
|
29478
29558
|
type: string
|
|
29479
29559
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -29492,7 +29572,7 @@ paths:
|
|
|
29492
29572
|
allOf:
|
|
29493
29573
|
- title: tickets.getMessageresponse
|
|
29494
29574
|
type: object
|
|
29495
|
-
properties: &
|
|
29575
|
+
properties: &ref_648
|
|
29496
29576
|
message_id:
|
|
29497
29577
|
type: string
|
|
29498
29578
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -29575,13 +29655,13 @@ paths:
|
|
|
29575
29655
|
schema:
|
|
29576
29656
|
allOf:
|
|
29577
29657
|
- title: tickets.importMessagerequest
|
|
29578
|
-
required: &
|
|
29658
|
+
required: &ref_649
|
|
29579
29659
|
- id
|
|
29580
29660
|
- body
|
|
29581
29661
|
- sent_by
|
|
29582
29662
|
- sent_at
|
|
29583
29663
|
type: object
|
|
29584
|
-
properties: &
|
|
29664
|
+
properties: &ref_650
|
|
29585
29665
|
id:
|
|
29586
29666
|
type: string
|
|
29587
29667
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -29634,7 +29714,7 @@ paths:
|
|
|
29634
29714
|
allOf:
|
|
29635
29715
|
- title: tickets.importMessageresponse
|
|
29636
29716
|
type: object
|
|
29637
|
-
properties: &
|
|
29717
|
+
properties: &ref_651
|
|
29638
29718
|
data:
|
|
29639
29719
|
title: TypeAndId
|
|
29640
29720
|
type: object
|
|
@@ -29663,11 +29743,11 @@ paths:
|
|
|
29663
29743
|
schema:
|
|
29664
29744
|
allOf:
|
|
29665
29745
|
- title: tickets.addReplyrequest
|
|
29666
|
-
required: &
|
|
29746
|
+
required: &ref_652
|
|
29667
29747
|
- id
|
|
29668
29748
|
- body
|
|
29669
29749
|
type: object
|
|
29670
|
-
properties: &
|
|
29750
|
+
properties: &ref_653
|
|
29671
29751
|
id:
|
|
29672
29752
|
type: string
|
|
29673
29753
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -29706,7 +29786,7 @@ paths:
|
|
|
29706
29786
|
allOf:
|
|
29707
29787
|
- title: tickets.addReplyresponse
|
|
29708
29788
|
type: object
|
|
29709
|
-
properties: &
|
|
29789
|
+
properties: &ref_654
|
|
29710
29790
|
data:
|
|
29711
29791
|
title: TypeAndId
|
|
29712
29792
|
type: object
|
|
@@ -29735,11 +29815,11 @@ paths:
|
|
|
29735
29815
|
schema:
|
|
29736
29816
|
allOf:
|
|
29737
29817
|
- title: tickets.addInternalMessagerequest
|
|
29738
|
-
required: &
|
|
29818
|
+
required: &ref_655
|
|
29739
29819
|
- id
|
|
29740
29820
|
- body
|
|
29741
29821
|
type: object
|
|
29742
|
-
properties: &
|
|
29822
|
+
properties: &ref_656
|
|
29743
29823
|
id:
|
|
29744
29824
|
type: string
|
|
29745
29825
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -29778,7 +29858,7 @@ paths:
|
|
|
29778
29858
|
allOf:
|
|
29779
29859
|
- title: tickets.addInternalMessageresponse
|
|
29780
29860
|
type: object
|
|
29781
|
-
properties: &
|
|
29861
|
+
properties: &ref_657
|
|
29782
29862
|
data:
|
|
29783
29863
|
title: TypeAndId
|
|
29784
29864
|
type: object
|
|
@@ -29808,7 +29888,7 @@ paths:
|
|
|
29808
29888
|
allOf:
|
|
29809
29889
|
- title: ticketStatus.listrequest
|
|
29810
29890
|
type: object
|
|
29811
|
-
properties: &
|
|
29891
|
+
properties: &ref_658
|
|
29812
29892
|
filter:
|
|
29813
29893
|
type: object
|
|
29814
29894
|
properties:
|
|
@@ -29837,7 +29917,7 @@ paths:
|
|
|
29837
29917
|
allOf:
|
|
29838
29918
|
- title: ticketStatus.listresponse
|
|
29839
29919
|
type: object
|
|
29840
|
-
properties: &
|
|
29920
|
+
properties: &ref_659
|
|
29841
29921
|
data:
|
|
29842
29922
|
type: array
|
|
29843
29923
|
items:
|
|
@@ -29887,10 +29967,10 @@ paths:
|
|
|
29887
29967
|
schema:
|
|
29888
29968
|
allOf:
|
|
29889
29969
|
- title: files.listrequest
|
|
29890
|
-
required: &
|
|
29970
|
+
required: &ref_660
|
|
29891
29971
|
- filter
|
|
29892
29972
|
type: object
|
|
29893
|
-
properties: &
|
|
29973
|
+
properties: &ref_661
|
|
29894
29974
|
filter:
|
|
29895
29975
|
type: object
|
|
29896
29976
|
required:
|
|
@@ -29972,7 +30052,7 @@ paths:
|
|
|
29972
30052
|
allOf:
|
|
29973
30053
|
- title: files.listresponse
|
|
29974
30054
|
type: object
|
|
29975
|
-
properties: &
|
|
30055
|
+
properties: &ref_662
|
|
29976
30056
|
data:
|
|
29977
30057
|
type: array
|
|
29978
30058
|
items:
|
|
@@ -30093,10 +30173,10 @@ paths:
|
|
|
30093
30173
|
schema:
|
|
30094
30174
|
allOf:
|
|
30095
30175
|
- title: files.inforequest
|
|
30096
|
-
required: &
|
|
30176
|
+
required: &ref_663
|
|
30097
30177
|
- id
|
|
30098
30178
|
type: object
|
|
30099
|
-
properties: &
|
|
30179
|
+
properties: &ref_664
|
|
30100
30180
|
id:
|
|
30101
30181
|
type: string
|
|
30102
30182
|
example: 6fac0bf0-e803-424e-af67-76863a3d7d16
|
|
@@ -30115,7 +30195,7 @@ paths:
|
|
|
30115
30195
|
allOf:
|
|
30116
30196
|
- title: files.inforesponse
|
|
30117
30197
|
type: object
|
|
30118
|
-
properties: &
|
|
30198
|
+
properties: &ref_665
|
|
30119
30199
|
data:
|
|
30120
30200
|
type: object
|
|
30121
30201
|
properties:
|
|
@@ -30214,10 +30294,10 @@ paths:
|
|
|
30214
30294
|
schema:
|
|
30215
30295
|
allOf:
|
|
30216
30296
|
- title: files.downloadrequest
|
|
30217
|
-
required: &
|
|
30297
|
+
required: &ref_666
|
|
30218
30298
|
- id
|
|
30219
30299
|
type: object
|
|
30220
|
-
properties: &
|
|
30300
|
+
properties: &ref_667
|
|
30221
30301
|
id:
|
|
30222
30302
|
type: string
|
|
30223
30303
|
example: 4afb0a9c-91c6-49ed-a2e5-ce7c1e3a87fb
|
|
@@ -30236,7 +30316,7 @@ paths:
|
|
|
30236
30316
|
allOf:
|
|
30237
30317
|
- title: files.downloadresponse
|
|
30238
30318
|
type: object
|
|
30239
|
-
properties: &
|
|
30319
|
+
properties: &ref_668
|
|
30240
30320
|
data:
|
|
30241
30321
|
type: object
|
|
30242
30322
|
properties:
|
|
@@ -30278,11 +30358,11 @@ paths:
|
|
|
30278
30358
|
schema:
|
|
30279
30359
|
allOf:
|
|
30280
30360
|
- title: files.uploadrequest
|
|
30281
|
-
required: &
|
|
30361
|
+
required: &ref_669
|
|
30282
30362
|
- name
|
|
30283
30363
|
- subject
|
|
30284
30364
|
type: object
|
|
30285
|
-
properties: &
|
|
30365
|
+
properties: &ref_670
|
|
30286
30366
|
name:
|
|
30287
30367
|
type: string
|
|
30288
30368
|
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.
|
|
@@ -30337,7 +30417,7 @@ paths:
|
|
|
30337
30417
|
allOf:
|
|
30338
30418
|
- title: files.uploadresponse
|
|
30339
30419
|
type: object
|
|
30340
|
-
properties: &
|
|
30420
|
+
properties: &ref_671
|
|
30341
30421
|
data:
|
|
30342
30422
|
type: object
|
|
30343
30423
|
properties:
|
|
@@ -30373,10 +30453,10 @@ paths:
|
|
|
30373
30453
|
schema:
|
|
30374
30454
|
allOf:
|
|
30375
30455
|
- title: files.deleterequest
|
|
30376
|
-
required: &
|
|
30456
|
+
required: &ref_672
|
|
30377
30457
|
- id
|
|
30378
30458
|
type: object
|
|
30379
|
-
properties: &
|
|
30459
|
+
properties: &ref_673
|
|
30380
30460
|
id:
|
|
30381
30461
|
type: string
|
|
30382
30462
|
example: 4afb0a9c-91c6-49ed-a2e5-ce7c1e3a87fb
|
|
@@ -30406,10 +30486,10 @@ paths:
|
|
|
30406
30486
|
schema:
|
|
30407
30487
|
allOf:
|
|
30408
30488
|
- title: mailTemplates.listrequest
|
|
30409
|
-
required: &
|
|
30489
|
+
required: &ref_674
|
|
30410
30490
|
- filter
|
|
30411
30491
|
type: object
|
|
30412
|
-
properties: &
|
|
30492
|
+
properties: &ref_675
|
|
30413
30493
|
filter:
|
|
30414
30494
|
type: object
|
|
30415
30495
|
required:
|
|
@@ -30445,7 +30525,7 @@ paths:
|
|
|
30445
30525
|
allOf:
|
|
30446
30526
|
- title: mailTemplates.listresponse
|
|
30447
30527
|
type: object
|
|
30448
|
-
properties: &
|
|
30528
|
+
properties: &ref_676
|
|
30449
30529
|
data:
|
|
30450
30530
|
type: array
|
|
30451
30531
|
items:
|
|
@@ -30526,7 +30606,7 @@ paths:
|
|
|
30526
30606
|
allOf:
|
|
30527
30607
|
- title: migrate.idrequest
|
|
30528
30608
|
type: object
|
|
30529
|
-
properties: &
|
|
30609
|
+
properties: &ref_677
|
|
30530
30610
|
type:
|
|
30531
30611
|
type: string
|
|
30532
30612
|
enum:
|
|
@@ -30571,7 +30651,7 @@ paths:
|
|
|
30571
30651
|
allOf:
|
|
30572
30652
|
- title: migrate.idresponse
|
|
30573
30653
|
type: object
|
|
30574
|
-
properties: &
|
|
30654
|
+
properties: &ref_678
|
|
30575
30655
|
data:
|
|
30576
30656
|
type: object
|
|
30577
30657
|
properties:
|
|
@@ -30626,7 +30706,7 @@ paths:
|
|
|
30626
30706
|
allOf:
|
|
30627
30707
|
- title: migrate.taxRaterequest
|
|
30628
30708
|
type: object
|
|
30629
|
-
properties: &
|
|
30709
|
+
properties: &ref_679
|
|
30630
30710
|
department_id:
|
|
30631
30711
|
type: string
|
|
30632
30712
|
example: 6ad54ec6-ee2d-4500-afe6-0917c1aa7a38
|
|
@@ -30650,7 +30730,7 @@ paths:
|
|
|
30650
30730
|
allOf:
|
|
30651
30731
|
- title: migrate.taxRateresponse
|
|
30652
30732
|
type: object
|
|
30653
|
-
properties: &
|
|
30733
|
+
properties: &ref_680
|
|
30654
30734
|
data:
|
|
30655
30735
|
title: TypeAndId
|
|
30656
30736
|
type: object
|
|
@@ -30680,7 +30760,7 @@ paths:
|
|
|
30680
30760
|
allOf:
|
|
30681
30761
|
- title: migrate.activityTyperequest
|
|
30682
30762
|
type: object
|
|
30683
|
-
properties: &
|
|
30763
|
+
properties: &ref_681
|
|
30684
30764
|
type:
|
|
30685
30765
|
type: string
|
|
30686
30766
|
enum:
|
|
@@ -30703,7 +30783,7 @@ paths:
|
|
|
30703
30783
|
allOf:
|
|
30704
30784
|
- title: migrate.activityTyperesponse
|
|
30705
30785
|
type: object
|
|
30706
|
-
properties: &
|
|
30786
|
+
properties: &ref_682
|
|
30707
30787
|
data:
|
|
30708
30788
|
title: TypeAndId
|
|
30709
30789
|
type: object
|
|
@@ -30731,10 +30811,10 @@ paths:
|
|
|
30731
30811
|
application/json:
|
|
30732
30812
|
schema:
|
|
30733
30813
|
title: orders.inforequest
|
|
30734
|
-
required: &
|
|
30814
|
+
required: &ref_683
|
|
30735
30815
|
- id
|
|
30736
30816
|
type: object
|
|
30737
|
-
properties: &
|
|
30817
|
+
properties: &ref_684
|
|
30738
30818
|
id:
|
|
30739
30819
|
type: string
|
|
30740
30820
|
example: 6fac0bf0-e803-424e-af67-76863a3d7d16
|
|
@@ -30755,7 +30835,7 @@ paths:
|
|
|
30755
30835
|
allOf:
|
|
30756
30836
|
- title: orders.inforesponse
|
|
30757
30837
|
type: object
|
|
30758
|
-
properties: &
|
|
30838
|
+
properties: &ref_686
|
|
30759
30839
|
data:
|
|
30760
30840
|
type: object
|
|
30761
30841
|
properties:
|
|
@@ -30785,7 +30865,7 @@ paths:
|
|
|
30785
30865
|
items:
|
|
30786
30866
|
title: OrdersGroupedLinesResponse
|
|
30787
30867
|
type: object
|
|
30788
|
-
properties: &
|
|
30868
|
+
properties: &ref_685
|
|
30789
30869
|
section:
|
|
30790
30870
|
type: object
|
|
30791
30871
|
properties:
|
|
@@ -30969,7 +31049,7 @@ paths:
|
|
|
30969
31049
|
allOf:
|
|
30970
31050
|
- title: orders.listrequest
|
|
30971
31051
|
type: object
|
|
30972
|
-
properties: &
|
|
31052
|
+
properties: &ref_687
|
|
30973
31053
|
filter:
|
|
30974
31054
|
type: object
|
|
30975
31055
|
properties:
|
|
@@ -31003,7 +31083,7 @@ paths:
|
|
|
31003
31083
|
schema:
|
|
31004
31084
|
title: orders.listresponse
|
|
31005
31085
|
type: object
|
|
31006
|
-
properties: &
|
|
31086
|
+
properties: &ref_688
|
|
31007
31087
|
data:
|
|
31008
31088
|
type: array
|
|
31009
31089
|
items:
|
|
@@ -31325,7 +31405,7 @@ paths:
|
|
|
31325
31405
|
schema:
|
|
31326
31406
|
title: webhooks.listresponse
|
|
31327
31407
|
type: object
|
|
31328
|
-
properties: &
|
|
31408
|
+
properties: &ref_689
|
|
31329
31409
|
data:
|
|
31330
31410
|
type: array
|
|
31331
31411
|
items:
|
|
@@ -31374,11 +31454,11 @@ paths:
|
|
|
31374
31454
|
schema:
|
|
31375
31455
|
allOf:
|
|
31376
31456
|
- title: cloudPlatforms.urlrequest
|
|
31377
|
-
required: &
|
|
31457
|
+
required: &ref_690
|
|
31378
31458
|
- type
|
|
31379
31459
|
- id
|
|
31380
31460
|
type: object
|
|
31381
|
-
properties: &
|
|
31461
|
+
properties: &ref_691
|
|
31382
31462
|
type:
|
|
31383
31463
|
type: string
|
|
31384
31464
|
enum:
|
|
@@ -31405,7 +31485,7 @@ paths:
|
|
|
31405
31485
|
allOf:
|
|
31406
31486
|
- title: cloudPlatforms.urlresponse
|
|
31407
31487
|
type: object
|
|
31408
|
-
properties: &
|
|
31488
|
+
properties: &ref_692
|
|
31409
31489
|
data:
|
|
31410
31490
|
type: object
|
|
31411
31491
|
properties:
|
|
@@ -31447,7 +31527,7 @@ paths:
|
|
|
31447
31527
|
allOf:
|
|
31448
31528
|
- title: accounts.projects-v2-statusresponse
|
|
31449
31529
|
type: object
|
|
31450
|
-
properties: &
|
|
31530
|
+
properties: &ref_693
|
|
31451
31531
|
data:
|
|
31452
31532
|
type: object
|
|
31453
31533
|
properties:
|
|
@@ -31486,7 +31566,7 @@ paths:
|
|
|
31486
31566
|
allOf:
|
|
31487
31567
|
- title: plannableItems.listrequest
|
|
31488
31568
|
type: object
|
|
31489
|
-
properties: &
|
|
31569
|
+
properties: &ref_694
|
|
31490
31570
|
filter:
|
|
31491
31571
|
type: object
|
|
31492
31572
|
properties:
|
|
@@ -31597,7 +31677,7 @@ paths:
|
|
|
31597
31677
|
allOf:
|
|
31598
31678
|
- title: plannableItems.listresponse
|
|
31599
31679
|
type: object
|
|
31600
|
-
properties: &
|
|
31680
|
+
properties: &ref_695
|
|
31601
31681
|
data:
|
|
31602
31682
|
type: array
|
|
31603
31683
|
items:
|
|
@@ -31685,7 +31765,7 @@ paths:
|
|
|
31685
31765
|
allOf:
|
|
31686
31766
|
- title: plannableItems.inforequest
|
|
31687
31767
|
type: object
|
|
31688
|
-
properties: &
|
|
31768
|
+
properties: &ref_696
|
|
31689
31769
|
id:
|
|
31690
31770
|
type: string
|
|
31691
31771
|
example: 018d79a1-2b99-7fbd-b323-500b01305371
|
|
@@ -31713,7 +31793,7 @@ paths:
|
|
|
31713
31793
|
allOf:
|
|
31714
31794
|
- title: plannableItems.inforesponse
|
|
31715
31795
|
type: object
|
|
31716
|
-
properties: &
|
|
31796
|
+
properties: &ref_697
|
|
31717
31797
|
data:
|
|
31718
31798
|
type: object
|
|
31719
31799
|
properties:
|
|
@@ -31791,7 +31871,7 @@ paths:
|
|
|
31791
31871
|
allOf:
|
|
31792
31872
|
- title: reservations.listrequest
|
|
31793
31873
|
type: object
|
|
31794
|
-
properties: &
|
|
31874
|
+
properties: &ref_698
|
|
31795
31875
|
filter:
|
|
31796
31876
|
type: object
|
|
31797
31877
|
properties:
|
|
@@ -31869,7 +31949,7 @@ paths:
|
|
|
31869
31949
|
allOf:
|
|
31870
31950
|
- title: reservations.listresponse
|
|
31871
31951
|
type: object
|
|
31872
|
-
properties: &
|
|
31952
|
+
properties: &ref_699
|
|
31873
31953
|
data:
|
|
31874
31954
|
type: array
|
|
31875
31955
|
items:
|
|
@@ -31967,12 +32047,12 @@ paths:
|
|
|
31967
32047
|
allOf:
|
|
31968
32048
|
- title: reservations.createrequest
|
|
31969
32049
|
type: object
|
|
31970
|
-
required: &
|
|
32050
|
+
required: &ref_700
|
|
31971
32051
|
- plannable_item_id
|
|
31972
32052
|
- date
|
|
31973
32053
|
- duration
|
|
31974
32054
|
- assignee
|
|
31975
|
-
properties: &
|
|
32055
|
+
properties: &ref_701
|
|
31976
32056
|
plannable_item_id:
|
|
31977
32057
|
type: string
|
|
31978
32058
|
example: e82cec33-24c9-4d13-96cb-d515a1660c8d
|
|
@@ -32029,7 +32109,7 @@ paths:
|
|
|
32029
32109
|
allOf:
|
|
32030
32110
|
- title: reservations.createresponse
|
|
32031
32111
|
type: object
|
|
32032
|
-
properties: &
|
|
32112
|
+
properties: &ref_702
|
|
32033
32113
|
data:
|
|
32034
32114
|
title: TypeAndId
|
|
32035
32115
|
type: object
|
|
@@ -32059,9 +32139,9 @@ paths:
|
|
|
32059
32139
|
allOf:
|
|
32060
32140
|
- title: reservations.updaterequest
|
|
32061
32141
|
type: object
|
|
32062
|
-
required: &
|
|
32142
|
+
required: &ref_703
|
|
32063
32143
|
- id
|
|
32064
|
-
properties: &
|
|
32144
|
+
properties: &ref_704
|
|
32065
32145
|
id:
|
|
32066
32146
|
type: string
|
|
32067
32147
|
example: 01878019-c72c-70dc-b097-7e519c775e35
|
|
@@ -32124,9 +32204,9 @@ paths:
|
|
|
32124
32204
|
allOf:
|
|
32125
32205
|
- title: reservations.deleterequest
|
|
32126
32206
|
type: object
|
|
32127
|
-
required: &
|
|
32207
|
+
required: &ref_705
|
|
32128
32208
|
- id
|
|
32129
|
-
properties: &
|
|
32209
|
+
properties: &ref_706
|
|
32130
32210
|
id:
|
|
32131
32211
|
type: string
|
|
32132
32212
|
example: 01878019-c72c-70dc-b097-7e519c775e35
|
|
@@ -32157,9 +32237,9 @@ paths:
|
|
|
32157
32237
|
allOf:
|
|
32158
32238
|
- title: userAvailability.totalrequest
|
|
32159
32239
|
type: object
|
|
32160
|
-
required: &
|
|
32240
|
+
required: &ref_707
|
|
32161
32241
|
- period
|
|
32162
|
-
properties: &
|
|
32242
|
+
properties: &ref_708
|
|
32163
32243
|
period:
|
|
32164
32244
|
allOf:
|
|
32165
32245
|
- title: Period
|
|
@@ -32216,7 +32296,7 @@ paths:
|
|
|
32216
32296
|
allOf:
|
|
32217
32297
|
- title: userAvailability.totalresponse
|
|
32218
32298
|
type: object
|
|
32219
|
-
properties: &
|
|
32299
|
+
properties: &ref_709
|
|
32220
32300
|
data:
|
|
32221
32301
|
type: array
|
|
32222
32302
|
items:
|
|
@@ -32311,9 +32391,9 @@ paths:
|
|
|
32311
32391
|
allOf:
|
|
32312
32392
|
- title: userAvailability.dailyrequest
|
|
32313
32393
|
type: object
|
|
32314
|
-
required: &
|
|
32394
|
+
required: &ref_710
|
|
32315
32395
|
- period
|
|
32316
|
-
properties: &
|
|
32396
|
+
properties: &ref_711
|
|
32317
32397
|
period:
|
|
32318
32398
|
allOf:
|
|
32319
32399
|
- title: Period
|
|
@@ -32364,7 +32444,7 @@ paths:
|
|
|
32364
32444
|
allOf:
|
|
32365
32445
|
- title: userAvailability.dailyresponse
|
|
32366
32446
|
type: object
|
|
32367
|
-
properties: &
|
|
32447
|
+
properties: &ref_712
|
|
32368
32448
|
data:
|
|
32369
32449
|
type: array
|
|
32370
32450
|
items:
|
|
@@ -33711,18 +33791,24 @@ components:
|
|
|
33711
33791
|
title: paymentMethods.listresponse
|
|
33712
33792
|
type: object
|
|
33713
33793
|
properties: *ref_439
|
|
33794
|
+
expenses.listrequest:
|
|
33795
|
+
type: object
|
|
33796
|
+
properties: *ref_440
|
|
33797
|
+
expenses.listresponse:
|
|
33798
|
+
type: object
|
|
33799
|
+
properties: *ref_441
|
|
33714
33800
|
productCategories.listrequest:
|
|
33715
33801
|
title: productCategories.listrequest
|
|
33716
33802
|
type: object
|
|
33717
|
-
properties: *
|
|
33803
|
+
properties: *ref_442
|
|
33718
33804
|
productCategories.listresponse:
|
|
33719
33805
|
title: productCategories.listresponse
|
|
33720
33806
|
type: object
|
|
33721
|
-
properties: *
|
|
33807
|
+
properties: *ref_443
|
|
33722
33808
|
products.listrequest:
|
|
33723
33809
|
title: products.listrequest
|
|
33724
33810
|
type: object
|
|
33725
|
-
properties: *
|
|
33811
|
+
properties: *ref_444
|
|
33726
33812
|
Stock:
|
|
33727
33813
|
title: Stock
|
|
33728
33814
|
type: object
|
|
@@ -33735,26 +33821,26 @@ components:
|
|
|
33735
33821
|
products.listresponse:
|
|
33736
33822
|
title: products.listresponse
|
|
33737
33823
|
type: object
|
|
33738
|
-
properties: *
|
|
33824
|
+
properties: *ref_445
|
|
33739
33825
|
products.inforequest:
|
|
33740
33826
|
title: products.inforequest
|
|
33741
|
-
required: *
|
|
33827
|
+
required: *ref_446
|
|
33742
33828
|
type: object
|
|
33743
|
-
properties: *
|
|
33829
|
+
properties: *ref_447
|
|
33744
33830
|
products.inforesponse:
|
|
33745
33831
|
title: products.inforesponse
|
|
33746
33832
|
type: object
|
|
33747
|
-
properties: *
|
|
33833
|
+
properties: *ref_448
|
|
33748
33834
|
ProductPriceWrite:
|
|
33749
33835
|
title: ProductPriceWrite
|
|
33750
|
-
required: *
|
|
33836
|
+
required: *ref_449
|
|
33751
33837
|
type: object
|
|
33752
|
-
properties: *
|
|
33838
|
+
properties: *ref_450
|
|
33753
33839
|
StockThreshold:
|
|
33754
33840
|
title: StockThreshold
|
|
33755
|
-
required: *
|
|
33841
|
+
required: *ref_451
|
|
33756
33842
|
type: object
|
|
33757
|
-
properties: *
|
|
33843
|
+
properties: *ref_452
|
|
33758
33844
|
description: Only available when stock management feature is enabled
|
|
33759
33845
|
ProductConfigurationWrite:
|
|
33760
33846
|
title: ProductConfigurationWrite
|
|
@@ -33767,33 +33853,33 @@ components:
|
|
|
33767
33853
|
products.addresponse:
|
|
33768
33854
|
title: products.addresponse
|
|
33769
33855
|
type: object
|
|
33770
|
-
properties: *
|
|
33856
|
+
properties: *ref_453
|
|
33771
33857
|
products.updaterequest:
|
|
33772
33858
|
title: products.updaterequest
|
|
33773
|
-
required: *
|
|
33859
|
+
required: *ref_454
|
|
33774
33860
|
type: object
|
|
33775
|
-
properties: *
|
|
33861
|
+
properties: *ref_455
|
|
33776
33862
|
products.deleterequest:
|
|
33777
33863
|
title: products.deleterequest
|
|
33778
|
-
required: *
|
|
33864
|
+
required: *ref_456
|
|
33779
33865
|
type: object
|
|
33780
|
-
properties: *
|
|
33866
|
+
properties: *ref_457
|
|
33781
33867
|
unitsOfMeasure.listresponse:
|
|
33782
33868
|
title: unitsOfMeasure.listresponse
|
|
33783
33869
|
type: object
|
|
33784
|
-
properties: *
|
|
33870
|
+
properties: *ref_458
|
|
33785
33871
|
priceLists.listrequest:
|
|
33786
33872
|
title: priceLists.listrequest
|
|
33787
33873
|
type: object
|
|
33788
|
-
properties: *
|
|
33874
|
+
properties: *ref_459
|
|
33789
33875
|
priceLists.listresponse:
|
|
33790
33876
|
title: priceLists.listresponse
|
|
33791
33877
|
type: object
|
|
33792
|
-
properties: *
|
|
33878
|
+
properties: *ref_460
|
|
33793
33879
|
projects.listrequest:
|
|
33794
33880
|
title: projects.listrequest
|
|
33795
33881
|
type: object
|
|
33796
|
-
properties: *
|
|
33882
|
+
properties: *ref_461
|
|
33797
33883
|
ProjectsActuals:
|
|
33798
33884
|
title: ProjectsActuals
|
|
33799
33885
|
type: object
|
|
@@ -33807,12 +33893,12 @@ components:
|
|
|
33807
33893
|
projects.listresponse:
|
|
33808
33894
|
title: projects.listresponse
|
|
33809
33895
|
type: object
|
|
33810
|
-
properties: *
|
|
33896
|
+
properties: *ref_462
|
|
33811
33897
|
projects.inforequest:
|
|
33812
33898
|
title: projects.inforequest
|
|
33813
|
-
required: *
|
|
33899
|
+
required: *ref_463
|
|
33814
33900
|
type: object
|
|
33815
|
-
properties: *
|
|
33901
|
+
properties: *ref_464
|
|
33816
33902
|
Role:
|
|
33817
33903
|
title: Role
|
|
33818
33904
|
enum: *ref_89
|
|
@@ -33824,26 +33910,26 @@ components:
|
|
|
33824
33910
|
projects.inforesponse:
|
|
33825
33911
|
title: projects.inforesponse
|
|
33826
33912
|
type: object
|
|
33827
|
-
properties: *
|
|
33913
|
+
properties: *ref_465
|
|
33828
33914
|
projects.createrequest:
|
|
33829
33915
|
title: projects.createrequest
|
|
33830
|
-
required: *
|
|
33916
|
+
required: *ref_466
|
|
33831
33917
|
type: object
|
|
33832
|
-
properties: *
|
|
33918
|
+
properties: *ref_467
|
|
33833
33919
|
projects.createresponse:
|
|
33834
33920
|
title: projects.createresponse
|
|
33835
33921
|
type: object
|
|
33836
33922
|
properties: *ref_94
|
|
33837
33923
|
projects.updaterequest:
|
|
33838
33924
|
title: projects.updaterequest
|
|
33839
|
-
required: *
|
|
33925
|
+
required: *ref_468
|
|
33840
33926
|
type: object
|
|
33841
|
-
properties: *
|
|
33927
|
+
properties: *ref_469
|
|
33842
33928
|
projects.closerequest:
|
|
33843
33929
|
title: projects.closerequest
|
|
33844
|
-
required: *
|
|
33930
|
+
required: *ref_470
|
|
33845
33931
|
type: object
|
|
33846
|
-
properties: *
|
|
33932
|
+
properties: *ref_471
|
|
33847
33933
|
projects.reopenrequest:
|
|
33848
33934
|
title: projects.reopenrequest
|
|
33849
33935
|
required: *ref_95
|
|
@@ -33851,23 +33937,23 @@ components:
|
|
|
33851
33937
|
properties: *ref_96
|
|
33852
33938
|
projects.deleterequest:
|
|
33853
33939
|
title: projects.deleterequest
|
|
33854
|
-
required: *
|
|
33940
|
+
required: *ref_472
|
|
33855
33941
|
type: object
|
|
33856
|
-
properties: *
|
|
33942
|
+
properties: *ref_473
|
|
33857
33943
|
projects.addParticipantrequest:
|
|
33858
33944
|
title: projects.addParticipantrequest
|
|
33859
|
-
required: *
|
|
33945
|
+
required: *ref_474
|
|
33860
33946
|
type: object
|
|
33861
|
-
properties: *
|
|
33947
|
+
properties: *ref_475
|
|
33862
33948
|
projects.updateParticipantrequest:
|
|
33863
33949
|
title: projects.updateParticipantrequest
|
|
33864
|
-
required: *
|
|
33950
|
+
required: *ref_476
|
|
33865
33951
|
type: object
|
|
33866
|
-
properties: *
|
|
33952
|
+
properties: *ref_477
|
|
33867
33953
|
milestones.listrequest:
|
|
33868
33954
|
title: milestones.listrequest
|
|
33869
33955
|
type: object
|
|
33870
|
-
properties: *
|
|
33956
|
+
properties: *ref_478
|
|
33871
33957
|
MilestonesActuals:
|
|
33872
33958
|
title: MilestonesActuals
|
|
33873
33959
|
type: object
|
|
@@ -33881,50 +33967,50 @@ components:
|
|
|
33881
33967
|
milestones.listresponse:
|
|
33882
33968
|
title: milestones.listresponse
|
|
33883
33969
|
type: object
|
|
33884
|
-
properties: *
|
|
33970
|
+
properties: *ref_479
|
|
33885
33971
|
milestones.inforequest:
|
|
33886
33972
|
title: milestones.inforequest
|
|
33887
|
-
required: *
|
|
33973
|
+
required: *ref_480
|
|
33888
33974
|
type: object
|
|
33889
|
-
properties: *
|
|
33975
|
+
properties: *ref_481
|
|
33890
33976
|
milestones.inforesponse:
|
|
33891
33977
|
title: milestones.inforesponse
|
|
33892
33978
|
type: object
|
|
33893
|
-
properties: *
|
|
33979
|
+
properties: *ref_482
|
|
33894
33980
|
milestones.createrequest:
|
|
33895
33981
|
title: milestones.createrequest
|
|
33896
|
-
required: *
|
|
33982
|
+
required: *ref_483
|
|
33897
33983
|
type: object
|
|
33898
|
-
properties: *
|
|
33899
|
-
oneOf: *
|
|
33984
|
+
properties: *ref_484
|
|
33985
|
+
oneOf: *ref_485
|
|
33900
33986
|
milestones.createresponse:
|
|
33901
33987
|
title: milestones.createresponse
|
|
33902
33988
|
type: object
|
|
33903
|
-
properties: *
|
|
33989
|
+
properties: *ref_486
|
|
33904
33990
|
milestones.updaterequest:
|
|
33905
33991
|
title: milestones.updaterequest
|
|
33906
|
-
required: *
|
|
33992
|
+
required: *ref_487
|
|
33907
33993
|
type: object
|
|
33908
|
-
properties: *
|
|
33994
|
+
properties: *ref_488
|
|
33909
33995
|
milestones.deleterequest:
|
|
33910
33996
|
title: milestones.deleterequest
|
|
33911
|
-
required: *
|
|
33997
|
+
required: *ref_489
|
|
33912
33998
|
type: object
|
|
33913
|
-
properties: *
|
|
33999
|
+
properties: *ref_490
|
|
33914
34000
|
milestones.closerequest:
|
|
33915
34001
|
title: milestones.closerequest
|
|
33916
|
-
required: *
|
|
34002
|
+
required: *ref_491
|
|
33917
34003
|
type: object
|
|
33918
|
-
properties: *
|
|
34004
|
+
properties: *ref_492
|
|
33919
34005
|
milestones.openrequest:
|
|
33920
34006
|
title: milestones.openrequest
|
|
33921
|
-
required: *
|
|
34007
|
+
required: *ref_493
|
|
33922
34008
|
type: object
|
|
33923
|
-
properties: *
|
|
34009
|
+
properties: *ref_494
|
|
33924
34010
|
projects-v2.listrequest:
|
|
33925
34011
|
title: projects-v2.listrequest
|
|
33926
34012
|
type: object
|
|
33927
|
-
properties: *
|
|
34013
|
+
properties: *ref_495
|
|
33928
34014
|
Color:
|
|
33929
34015
|
title: Color
|
|
33930
34016
|
enum: *ref_92
|
|
@@ -33937,21 +34023,21 @@ components:
|
|
|
33937
34023
|
projects-v2.listresponse:
|
|
33938
34024
|
title: projects-v2.listresponse
|
|
33939
34025
|
type: object
|
|
33940
|
-
properties: *
|
|
34026
|
+
properties: *ref_496
|
|
33941
34027
|
projects-v2.inforequest:
|
|
33942
34028
|
title: projects-v2.inforequest
|
|
33943
|
-
required: *
|
|
34029
|
+
required: *ref_497
|
|
33944
34030
|
type: object
|
|
33945
|
-
properties: *
|
|
34031
|
+
properties: *ref_498
|
|
33946
34032
|
projects-v2.inforesponse:
|
|
33947
34033
|
title: projects.inforesponse1
|
|
33948
34034
|
type: object
|
|
33949
|
-
properties: *
|
|
34035
|
+
properties: *ref_499
|
|
33950
34036
|
projects-v2.createrequest:
|
|
33951
34037
|
title: projects-v2.createrequest
|
|
33952
|
-
required: *
|
|
34038
|
+
required: *ref_500
|
|
33953
34039
|
type: object
|
|
33954
|
-
properties: *
|
|
34040
|
+
properties: *ref_501
|
|
33955
34041
|
BillingMethod:
|
|
33956
34042
|
title: BillingMethod
|
|
33957
34043
|
required: *ref_98
|
|
@@ -33959,116 +34045,116 @@ components:
|
|
|
33959
34045
|
properties: *ref_99
|
|
33960
34046
|
projects-v2.updaterequest:
|
|
33961
34047
|
title: projects-v2.updaterequest
|
|
33962
|
-
required: *
|
|
34048
|
+
required: *ref_502
|
|
33963
34049
|
type: object
|
|
33964
|
-
properties: *
|
|
34050
|
+
properties: *ref_503
|
|
33965
34051
|
projects-v2.closerequest:
|
|
33966
34052
|
title: projects-v2.closerequest
|
|
33967
|
-
required: *
|
|
34053
|
+
required: *ref_504
|
|
33968
34054
|
type: object
|
|
33969
|
-
properties: *
|
|
34055
|
+
properties: *ref_505
|
|
33970
34056
|
projects-v2.duplicaterequest:
|
|
33971
34057
|
title: projects-v2.duplicaterequest
|
|
33972
|
-
required: *
|
|
34058
|
+
required: *ref_506
|
|
33973
34059
|
type: object
|
|
33974
|
-
properties: *
|
|
34060
|
+
properties: *ref_507
|
|
33975
34061
|
projects-v2.duplicateresponse:
|
|
33976
34062
|
title: projects-v2.duplicateresponse
|
|
33977
34063
|
type: object
|
|
33978
|
-
properties: *
|
|
34064
|
+
properties: *ref_508
|
|
33979
34065
|
projects-v2.deleterequest:
|
|
33980
34066
|
title: projects-v2.deleterequest
|
|
33981
|
-
required: *
|
|
34067
|
+
required: *ref_509
|
|
33982
34068
|
type: object
|
|
33983
|
-
properties: *
|
|
34069
|
+
properties: *ref_510
|
|
33984
34070
|
projects-v2.addOwnerrequest:
|
|
33985
34071
|
title: projects-v2.addOwnerrequest
|
|
33986
|
-
required: *
|
|
34072
|
+
required: *ref_511
|
|
33987
34073
|
type: object
|
|
33988
|
-
properties: *
|
|
34074
|
+
properties: *ref_512
|
|
33989
34075
|
projects-v2.removeOwnerrequest:
|
|
33990
34076
|
title: projects-v2.removeOwnerrequest
|
|
33991
|
-
required: *
|
|
34077
|
+
required: *ref_513
|
|
33992
34078
|
type: object
|
|
33993
|
-
properties: *
|
|
34079
|
+
properties: *ref_514
|
|
33994
34080
|
projects-v2.assignrequest:
|
|
33995
34081
|
title: projects-v2.assignrequest
|
|
33996
|
-
required: *
|
|
34082
|
+
required: *ref_515
|
|
33997
34083
|
type: object
|
|
33998
|
-
properties: *
|
|
34084
|
+
properties: *ref_516
|
|
33999
34085
|
projects-v2.unassignrequest:
|
|
34000
34086
|
title: projects-v2.unassignrequest
|
|
34001
|
-
required: *
|
|
34087
|
+
required: *ref_517
|
|
34002
34088
|
type: object
|
|
34003
|
-
properties: *
|
|
34089
|
+
properties: *ref_518
|
|
34004
34090
|
projects-v2.addCustomerrequest:
|
|
34005
34091
|
title: projects-v2.addCustomerrequest
|
|
34006
|
-
required: *
|
|
34092
|
+
required: *ref_519
|
|
34007
34093
|
type: object
|
|
34008
|
-
properties: *
|
|
34094
|
+
properties: *ref_520
|
|
34009
34095
|
projects-v2.removeCustomerrequest:
|
|
34010
34096
|
title: projects-v2.removeCustomerrequest
|
|
34011
|
-
required: *
|
|
34097
|
+
required: *ref_521
|
|
34012
34098
|
type: object
|
|
34013
|
-
properties: *
|
|
34099
|
+
properties: *ref_522
|
|
34014
34100
|
projects-v2.addDealrequest:
|
|
34015
34101
|
title: projects-v2.addDealrequest
|
|
34016
|
-
required: *
|
|
34102
|
+
required: *ref_523
|
|
34017
34103
|
type: object
|
|
34018
|
-
properties: *
|
|
34104
|
+
properties: *ref_524
|
|
34019
34105
|
projects-v2.removeDealrequest:
|
|
34020
34106
|
title: projects-v2.removeDealrequest
|
|
34021
|
-
required: *
|
|
34107
|
+
required: *ref_525
|
|
34022
34108
|
type: object
|
|
34023
|
-
properties: *
|
|
34109
|
+
properties: *ref_526
|
|
34024
34110
|
projects-v2.addQuotationrequest:
|
|
34025
34111
|
title: projects-v2.addQuotationrequest
|
|
34026
|
-
required: *
|
|
34112
|
+
required: *ref_527
|
|
34027
34113
|
type: object
|
|
34028
|
-
properties: *
|
|
34114
|
+
properties: *ref_528
|
|
34029
34115
|
projects-v2.removeQuotationrequest:
|
|
34030
34116
|
title: projects-v2.removeQuotationrequest
|
|
34031
|
-
required: *
|
|
34117
|
+
required: *ref_529
|
|
34032
34118
|
type: object
|
|
34033
|
-
properties: *
|
|
34119
|
+
properties: *ref_530
|
|
34034
34120
|
projects-v2_externalParties.addToProjectrequest:
|
|
34035
34121
|
title: projects-v2_externalParties.addToProjectrequest
|
|
34036
|
-
required: *
|
|
34122
|
+
required: *ref_531
|
|
34037
34123
|
type: object
|
|
34038
|
-
properties: *
|
|
34124
|
+
properties: *ref_532
|
|
34039
34125
|
projects-v2_externalParties.updaterequest:
|
|
34040
34126
|
title: projects-v2_externalParties.updaterequest
|
|
34041
|
-
required: *
|
|
34127
|
+
required: *ref_533
|
|
34042
34128
|
type: object
|
|
34043
|
-
properties: *
|
|
34129
|
+
properties: *ref_534
|
|
34044
34130
|
projects-v2_externalParties.deleterequest:
|
|
34045
34131
|
title: projects-v2_externalParties.deleterequest
|
|
34046
|
-
required: *
|
|
34132
|
+
required: *ref_535
|
|
34047
34133
|
type: object
|
|
34048
|
-
properties: *
|
|
34134
|
+
properties: *ref_536
|
|
34049
34135
|
projects-v2_projectLines.listrequest:
|
|
34050
34136
|
title: projects-v2_projectLines.listrequest
|
|
34051
|
-
required: *
|
|
34137
|
+
required: *ref_537
|
|
34052
34138
|
type: object
|
|
34053
|
-
properties: *
|
|
34139
|
+
properties: *ref_538
|
|
34054
34140
|
projects-v2_projectLines.listresponse:
|
|
34055
34141
|
title: projects-v2_projectLines.listresponse
|
|
34056
34142
|
type: object
|
|
34057
|
-
properties: *
|
|
34143
|
+
properties: *ref_539
|
|
34058
34144
|
projects-v2_projectLines.addToGrouprequest:
|
|
34059
34145
|
title: projects-v2_projectLines.addToGrouprequest
|
|
34060
|
-
required: *
|
|
34146
|
+
required: *ref_540
|
|
34061
34147
|
type: object
|
|
34062
|
-
properties: *
|
|
34148
|
+
properties: *ref_541
|
|
34063
34149
|
projects-v2_projectLines.removeFromGrouprequest:
|
|
34064
34150
|
title: projects-v2_projectLines.removeFromGrouprequest
|
|
34065
|
-
required: *
|
|
34151
|
+
required: *ref_542
|
|
34066
34152
|
type: object
|
|
34067
|
-
properties: *
|
|
34153
|
+
properties: *ref_543
|
|
34068
34154
|
projects-v2_projectGroups.listrequest:
|
|
34069
34155
|
title: projects-v2_projectGroups.listrequest
|
|
34070
34156
|
type: object
|
|
34071
|
-
properties: *
|
|
34157
|
+
properties: *ref_544
|
|
34072
34158
|
BillingStatus:
|
|
34073
34159
|
title: BillingStatus
|
|
34074
34160
|
enum: *ref_97
|
|
@@ -34077,62 +34163,62 @@ components:
|
|
|
34077
34163
|
projects-v2_projectGroups.listresponse:
|
|
34078
34164
|
title: projects-v2_projectGroups.listresponse
|
|
34079
34165
|
type: object
|
|
34080
|
-
properties: *
|
|
34166
|
+
properties: *ref_545
|
|
34081
34167
|
projects-v2_projectGroups.inforequest:
|
|
34082
34168
|
title: projects-v2_projectGroups.inforequest
|
|
34083
|
-
required: *
|
|
34169
|
+
required: *ref_546
|
|
34084
34170
|
type: object
|
|
34085
|
-
properties: *
|
|
34171
|
+
properties: *ref_547
|
|
34086
34172
|
projects-v2_projectGroups.inforesponse:
|
|
34087
34173
|
title: projects-v2_projectGroups.inforesponse
|
|
34088
34174
|
type: object
|
|
34089
|
-
properties: *
|
|
34175
|
+
properties: *ref_548
|
|
34090
34176
|
projects-v2_projectGroups.createrequest:
|
|
34091
34177
|
title: projects-v2_projectGroups.createrequest
|
|
34092
|
-
required: *
|
|
34178
|
+
required: *ref_549
|
|
34093
34179
|
type: object
|
|
34094
|
-
properties: *
|
|
34180
|
+
properties: *ref_550
|
|
34095
34181
|
projects-v2_projectGroups.createresponse:
|
|
34096
34182
|
title: projects-v2_projectGroups.createresponse
|
|
34097
34183
|
type: object
|
|
34098
|
-
properties: *
|
|
34184
|
+
properties: *ref_551
|
|
34099
34185
|
projects-v2_projectGroups.updaterequest:
|
|
34100
34186
|
title: projects-v2_projectGroups.updaterequest
|
|
34101
|
-
required: *
|
|
34187
|
+
required: *ref_552
|
|
34102
34188
|
type: object
|
|
34103
|
-
properties: *
|
|
34189
|
+
properties: *ref_553
|
|
34104
34190
|
projects-v2_projectGroups.duplicaterequest:
|
|
34105
34191
|
title: projects-v2_projectGroups.duplicaterequest
|
|
34106
|
-
required: *
|
|
34192
|
+
required: *ref_554
|
|
34107
34193
|
type: object
|
|
34108
|
-
properties: *
|
|
34194
|
+
properties: *ref_555
|
|
34109
34195
|
projects-v2_projectGroups.duplicateresponse:
|
|
34110
34196
|
title: projects-v2_projectGroups.duplicateresponse
|
|
34111
34197
|
type: object
|
|
34112
|
-
properties: *
|
|
34198
|
+
properties: *ref_556
|
|
34113
34199
|
projects-v2_projectGroups.deleterequest:
|
|
34114
34200
|
title: projects-v2_projectGroups.deleterequest
|
|
34115
|
-
required: *
|
|
34201
|
+
required: *ref_557
|
|
34116
34202
|
type: object
|
|
34117
|
-
properties: *
|
|
34203
|
+
properties: *ref_558
|
|
34118
34204
|
projects-v2_projectGroups.assignrequest:
|
|
34119
34205
|
title: projects-v2_projectGroups.assignrequest
|
|
34120
|
-
required: *
|
|
34206
|
+
required: *ref_559
|
|
34121
34207
|
type: object
|
|
34122
|
-
properties: *
|
|
34208
|
+
properties: *ref_560
|
|
34123
34209
|
projects-v2_projectGroups.unassignrequest:
|
|
34124
34210
|
title: projects-v2_projectGroups.unassignrequest
|
|
34125
|
-
required: *
|
|
34211
|
+
required: *ref_561
|
|
34126
34212
|
type: object
|
|
34127
|
-
properties: *
|
|
34213
|
+
properties: *ref_562
|
|
34128
34214
|
projects-v2_tasks.listrequest:
|
|
34129
34215
|
title: projects-v2_tasks.listrequest
|
|
34130
34216
|
type: object
|
|
34131
|
-
properties: *
|
|
34217
|
+
properties: *ref_563
|
|
34132
34218
|
projects-v2_tasks.listresponse:
|
|
34133
34219
|
title: projects-v2_tasks.listresponse
|
|
34134
34220
|
type: object
|
|
34135
|
-
properties: *
|
|
34221
|
+
properties: *ref_564
|
|
34136
34222
|
tasks.inforequest:
|
|
34137
34223
|
title: tasks.inforequest
|
|
34138
34224
|
required: *ref_100
|
|
@@ -34141,104 +34227,104 @@ components:
|
|
|
34141
34227
|
projects-v2_tasks.inforesponse:
|
|
34142
34228
|
title: projects-v2_tasks.inforesponse
|
|
34143
34229
|
type: object
|
|
34144
|
-
properties: *
|
|
34230
|
+
properties: *ref_565
|
|
34145
34231
|
projects-v2_tasks.createrequest:
|
|
34146
34232
|
title: projects-v2_tasks.createrequest
|
|
34147
|
-
required: *
|
|
34233
|
+
required: *ref_566
|
|
34148
34234
|
type: object
|
|
34149
|
-
properties: *
|
|
34235
|
+
properties: *ref_567
|
|
34150
34236
|
tasks.createresponse:
|
|
34151
34237
|
title: tasks.createresponse
|
|
34152
34238
|
type: object
|
|
34153
34239
|
properties: *ref_103
|
|
34154
34240
|
projects-v2_tasks.updaterequest:
|
|
34155
34241
|
title: projects-v2_tasks.updaterequest
|
|
34156
|
-
required: *
|
|
34242
|
+
required: *ref_568
|
|
34157
34243
|
type: object
|
|
34158
|
-
properties: *
|
|
34244
|
+
properties: *ref_569
|
|
34159
34245
|
projects-v2_tasks.duplicaterequest:
|
|
34160
34246
|
title: projects-v2_tasks.duplicaterequest
|
|
34161
|
-
required: *
|
|
34247
|
+
required: *ref_570
|
|
34162
34248
|
type: object
|
|
34163
|
-
properties: *
|
|
34249
|
+
properties: *ref_571
|
|
34164
34250
|
projects-v2_tasks.duplicateresponse:
|
|
34165
34251
|
title: projects-v2_tasks.duplicateresponse
|
|
34166
34252
|
type: object
|
|
34167
|
-
properties: *
|
|
34253
|
+
properties: *ref_572
|
|
34168
34254
|
projects-v2_tasks.deleterequest:
|
|
34169
34255
|
title: projects-v2_tasks.deleterequest
|
|
34170
|
-
required: *
|
|
34256
|
+
required: *ref_573
|
|
34171
34257
|
type: object
|
|
34172
|
-
properties: *
|
|
34258
|
+
properties: *ref_574
|
|
34173
34259
|
projects-v2_tasks.assignrequest:
|
|
34174
34260
|
title: projects-v2_tasks.assignrequest
|
|
34175
|
-
required: *
|
|
34261
|
+
required: *ref_575
|
|
34176
34262
|
type: object
|
|
34177
|
-
properties: *
|
|
34263
|
+
properties: *ref_576
|
|
34178
34264
|
projects-v2_tasks.unassignrequest:
|
|
34179
34265
|
title: projects-v2_tasks.unassignrequest
|
|
34180
|
-
required: *
|
|
34266
|
+
required: *ref_577
|
|
34181
34267
|
type: object
|
|
34182
|
-
properties: *
|
|
34268
|
+
properties: *ref_578
|
|
34183
34269
|
projects-v2_materials.listrequest:
|
|
34184
34270
|
title: projects-v2_materials.listrequest
|
|
34185
34271
|
type: object
|
|
34186
|
-
properties: *
|
|
34272
|
+
properties: *ref_579
|
|
34187
34273
|
projects-v2_materials.listresponse:
|
|
34188
34274
|
title: projects-v2_materials.listresponse
|
|
34189
34275
|
type: object
|
|
34190
|
-
properties: *
|
|
34276
|
+
properties: *ref_580
|
|
34191
34277
|
projects-v2_materials.inforequest:
|
|
34192
34278
|
title: projects-v2_materials.inforequest
|
|
34193
|
-
required: *
|
|
34279
|
+
required: *ref_581
|
|
34194
34280
|
type: object
|
|
34195
|
-
properties: *
|
|
34281
|
+
properties: *ref_582
|
|
34196
34282
|
projects-v2_materials.inforesponse:
|
|
34197
34283
|
title: projects-v2_materials.inforesponse
|
|
34198
34284
|
type: object
|
|
34199
|
-
properties: *
|
|
34285
|
+
properties: *ref_583
|
|
34200
34286
|
projects-v2_materials.createrequest:
|
|
34201
34287
|
title: projects-v2_materials.createrequest
|
|
34202
|
-
required: *
|
|
34288
|
+
required: *ref_584
|
|
34203
34289
|
type: object
|
|
34204
|
-
properties: *
|
|
34290
|
+
properties: *ref_585
|
|
34205
34291
|
projects-v2_materials.createresponse:
|
|
34206
34292
|
title: projects-v2_materials.createresponse
|
|
34207
34293
|
type: object
|
|
34208
|
-
properties: *
|
|
34294
|
+
properties: *ref_586
|
|
34209
34295
|
projects-v2_materials.updaterequest:
|
|
34210
34296
|
title: projects-v2_materials.updaterequest
|
|
34211
|
-
required: *
|
|
34297
|
+
required: *ref_587
|
|
34212
34298
|
type: object
|
|
34213
|
-
properties: *
|
|
34299
|
+
properties: *ref_588
|
|
34214
34300
|
projects-v2_materials.duplicaterequest:
|
|
34215
34301
|
title: projects-v2_materials.duplicaterequest
|
|
34216
|
-
required: *
|
|
34302
|
+
required: *ref_589
|
|
34217
34303
|
type: object
|
|
34218
|
-
properties: *
|
|
34304
|
+
properties: *ref_590
|
|
34219
34305
|
projects-v2_materials.duplicateresponse:
|
|
34220
34306
|
title: projects-v2_materials.duplicateresponse
|
|
34221
34307
|
type: object
|
|
34222
|
-
properties: *
|
|
34308
|
+
properties: *ref_591
|
|
34223
34309
|
projects-v2_materials.deleterequest:
|
|
34224
34310
|
title: projects-v2_materials.deleterequest
|
|
34225
|
-
required: *
|
|
34311
|
+
required: *ref_592
|
|
34226
34312
|
type: object
|
|
34227
|
-
properties: *
|
|
34313
|
+
properties: *ref_593
|
|
34228
34314
|
projects-v2_materials.assignrequest:
|
|
34229
34315
|
title: projects-v2_materials.assignrequest
|
|
34230
|
-
required: *
|
|
34316
|
+
required: *ref_594
|
|
34231
34317
|
type: object
|
|
34232
|
-
properties: *
|
|
34318
|
+
properties: *ref_595
|
|
34233
34319
|
projects-v2_materials.unassignrequest:
|
|
34234
34320
|
title: projects-v2_materials.unassignrequest
|
|
34235
|
-
required: *
|
|
34321
|
+
required: *ref_596
|
|
34236
34322
|
type: object
|
|
34237
|
-
properties: *
|
|
34323
|
+
properties: *ref_597
|
|
34238
34324
|
tasks.listrequest:
|
|
34239
34325
|
title: tasks.listrequest1
|
|
34240
34326
|
type: object
|
|
34241
|
-
properties: *
|
|
34327
|
+
properties: *ref_598
|
|
34242
34328
|
Priority:
|
|
34243
34329
|
title: Priority
|
|
34244
34330
|
enum: *ref_102
|
|
@@ -34246,49 +34332,49 @@ components:
|
|
|
34246
34332
|
tasks.listresponse:
|
|
34247
34333
|
title: tasks.listresponse1
|
|
34248
34334
|
type: object
|
|
34249
|
-
properties: *
|
|
34335
|
+
properties: *ref_599
|
|
34250
34336
|
tasks.inforesponse:
|
|
34251
34337
|
title: tasks.inforesponse1
|
|
34252
34338
|
type: object
|
|
34253
|
-
properties: *
|
|
34339
|
+
properties: *ref_600
|
|
34254
34340
|
tasks.createrequest:
|
|
34255
34341
|
title: tasks.createrequest1
|
|
34256
|
-
required: *
|
|
34342
|
+
required: *ref_601
|
|
34257
34343
|
type: object
|
|
34258
|
-
properties: *
|
|
34344
|
+
properties: *ref_602
|
|
34259
34345
|
tasks.updaterequest:
|
|
34260
34346
|
title: tasks.updaterequest1
|
|
34261
|
-
required: *
|
|
34347
|
+
required: *ref_603
|
|
34262
34348
|
type: object
|
|
34263
|
-
properties: *
|
|
34349
|
+
properties: *ref_604
|
|
34264
34350
|
tasks.completerequest:
|
|
34265
34351
|
title: tasks.completerequest
|
|
34266
|
-
required: *
|
|
34352
|
+
required: *ref_605
|
|
34267
34353
|
type: object
|
|
34268
|
-
properties: *
|
|
34354
|
+
properties: *ref_606
|
|
34269
34355
|
tasks.reopenrequest:
|
|
34270
34356
|
title: tasks.reopenrequest
|
|
34271
|
-
required: *
|
|
34357
|
+
required: *ref_607
|
|
34272
34358
|
type: object
|
|
34273
|
-
properties: *
|
|
34359
|
+
properties: *ref_608
|
|
34274
34360
|
tasks.deleterequest:
|
|
34275
34361
|
title: tasks.deleterequest1
|
|
34276
|
-
required: *
|
|
34362
|
+
required: *ref_609
|
|
34277
34363
|
type: object
|
|
34278
|
-
properties: *
|
|
34364
|
+
properties: *ref_610
|
|
34279
34365
|
tasks.schedulerequest:
|
|
34280
34366
|
title: tasks.schedulerequest
|
|
34281
|
-
required: *
|
|
34367
|
+
required: *ref_611
|
|
34282
34368
|
type: object
|
|
34283
|
-
properties: *
|
|
34369
|
+
properties: *ref_612
|
|
34284
34370
|
tasks.scheduleresponse:
|
|
34285
34371
|
title: tasks.scheduleresponse
|
|
34286
34372
|
type: object
|
|
34287
|
-
properties: *
|
|
34373
|
+
properties: *ref_613
|
|
34288
34374
|
timeTracking.listrequest:
|
|
34289
34375
|
title: timeTracking.listrequest
|
|
34290
34376
|
type: object
|
|
34291
|
-
properties: *
|
|
34377
|
+
properties: *ref_614
|
|
34292
34378
|
BillingInfo:
|
|
34293
34379
|
title: BillingInfo
|
|
34294
34380
|
type: object
|
|
@@ -34304,82 +34390,82 @@ components:
|
|
|
34304
34390
|
timeTracking.listresponse:
|
|
34305
34391
|
title: timeTracking.listresponse
|
|
34306
34392
|
type: object
|
|
34307
|
-
properties: *
|
|
34393
|
+
properties: *ref_615
|
|
34308
34394
|
timeTracking.inforequest:
|
|
34309
34395
|
title: timeTracking.inforequest
|
|
34310
|
-
required: *
|
|
34396
|
+
required: *ref_616
|
|
34311
34397
|
type: object
|
|
34312
|
-
properties: *
|
|
34398
|
+
properties: *ref_617
|
|
34313
34399
|
timeTracking.inforesponse:
|
|
34314
34400
|
title: timeTracking.inforesponse
|
|
34315
34401
|
type: object
|
|
34316
|
-
properties: *
|
|
34402
|
+
properties: *ref_618
|
|
34317
34403
|
timeTracking.addrequest:
|
|
34318
34404
|
title: timeTracking.addrequest
|
|
34319
34405
|
type: object
|
|
34320
|
-
properties: *
|
|
34321
|
-
oneOf: *
|
|
34406
|
+
properties: *ref_619
|
|
34407
|
+
oneOf: *ref_620
|
|
34322
34408
|
timeTracking.addresponse:
|
|
34323
34409
|
title: timeTracking.addresponse
|
|
34324
34410
|
type: object
|
|
34325
|
-
properties: *
|
|
34411
|
+
properties: *ref_621
|
|
34326
34412
|
timeTracking.updaterequest:
|
|
34327
34413
|
title: timeTracking.updaterequest
|
|
34328
|
-
required: *
|
|
34414
|
+
required: *ref_622
|
|
34329
34415
|
type: object
|
|
34330
|
-
properties: *
|
|
34331
|
-
oneOf: *
|
|
34416
|
+
properties: *ref_623
|
|
34417
|
+
oneOf: *ref_624
|
|
34332
34418
|
timeTracking.resumerequest:
|
|
34333
34419
|
title: timeTracking.resumerequest
|
|
34334
|
-
required: *
|
|
34420
|
+
required: *ref_625
|
|
34335
34421
|
type: object
|
|
34336
|
-
properties: *
|
|
34422
|
+
properties: *ref_626
|
|
34337
34423
|
timeTracking.resumeresponse:
|
|
34338
34424
|
title: timeTracking.resumeresponse
|
|
34339
34425
|
type: object
|
|
34340
|
-
properties: *
|
|
34426
|
+
properties: *ref_627
|
|
34341
34427
|
timeTracking.deleterequest:
|
|
34342
34428
|
title: timeTracking.deleterequest
|
|
34343
|
-
required: *
|
|
34429
|
+
required: *ref_628
|
|
34344
34430
|
type: object
|
|
34345
|
-
properties: *
|
|
34431
|
+
properties: *ref_629
|
|
34346
34432
|
timers.currentresponse:
|
|
34347
34433
|
title: timers.currentresponse
|
|
34348
34434
|
type: object
|
|
34349
|
-
properties: *
|
|
34435
|
+
properties: *ref_630
|
|
34350
34436
|
timers.startrequest:
|
|
34351
34437
|
title: timers.startrequest
|
|
34352
34438
|
type: object
|
|
34353
|
-
properties: *
|
|
34439
|
+
properties: *ref_631
|
|
34354
34440
|
timers.startresponse:
|
|
34355
34441
|
title: timers.startresponse
|
|
34356
34442
|
type: object
|
|
34357
|
-
properties: *
|
|
34443
|
+
properties: *ref_632
|
|
34358
34444
|
timers.stopresponse:
|
|
34359
34445
|
title: timers.stopresponse
|
|
34360
34446
|
type: object
|
|
34361
|
-
properties: *
|
|
34447
|
+
properties: *ref_633
|
|
34362
34448
|
timers.updaterequest:
|
|
34363
34449
|
title: timers.updaterequest
|
|
34364
34450
|
type: object
|
|
34365
|
-
properties: *
|
|
34451
|
+
properties: *ref_634
|
|
34366
34452
|
tickets.listrequest:
|
|
34367
34453
|
title: tickets.listrequest
|
|
34368
34454
|
type: object
|
|
34369
|
-
properties: *
|
|
34455
|
+
properties: *ref_635
|
|
34370
34456
|
tickets.listresponse:
|
|
34371
34457
|
title: tickets.listresponse
|
|
34372
34458
|
type: object
|
|
34373
|
-
properties: *
|
|
34459
|
+
properties: *ref_636
|
|
34374
34460
|
tickets.inforequest:
|
|
34375
34461
|
title: tickets.inforequest
|
|
34376
|
-
required: *
|
|
34462
|
+
required: *ref_637
|
|
34377
34463
|
type: object
|
|
34378
|
-
properties: *
|
|
34464
|
+
properties: *ref_638
|
|
34379
34465
|
tickets.inforesponse:
|
|
34380
34466
|
title: tickets.inforesponse
|
|
34381
34467
|
type: object
|
|
34382
|
-
properties: *
|
|
34468
|
+
properties: *ref_639
|
|
34383
34469
|
CompanyCustomer:
|
|
34384
34470
|
title: CompanyCustomer
|
|
34385
34471
|
required: *ref_107
|
|
@@ -34387,22 +34473,22 @@ components:
|
|
|
34387
34473
|
properties: *ref_108
|
|
34388
34474
|
tickets.createrequest:
|
|
34389
34475
|
title: tickets.createrequest
|
|
34390
|
-
required: *
|
|
34476
|
+
required: *ref_640
|
|
34391
34477
|
type: object
|
|
34392
|
-
properties: *
|
|
34478
|
+
properties: *ref_641
|
|
34393
34479
|
tickets.createresponse:
|
|
34394
34480
|
title: tickets.createresponse
|
|
34395
34481
|
type: object
|
|
34396
|
-
properties: *
|
|
34482
|
+
properties: *ref_642
|
|
34397
34483
|
tickets.updaterequest:
|
|
34398
34484
|
title: tickets.updaterequest
|
|
34399
|
-
required: *
|
|
34485
|
+
required: *ref_643
|
|
34400
34486
|
type: object
|
|
34401
|
-
properties: *
|
|
34487
|
+
properties: *ref_644
|
|
34402
34488
|
tickets.listMessagesrequest:
|
|
34403
34489
|
title: tickets.listMessagesrequest
|
|
34404
34490
|
type: object
|
|
34405
|
-
properties: *
|
|
34491
|
+
properties: *ref_645
|
|
34406
34492
|
SentBy:
|
|
34407
34493
|
title: SentBy
|
|
34408
34494
|
type: object
|
|
@@ -34410,55 +34496,55 @@ components:
|
|
|
34410
34496
|
tickets.listMessagesresponse:
|
|
34411
34497
|
title: tickets.listMessagesresponse
|
|
34412
34498
|
type: object
|
|
34413
|
-
properties: *
|
|
34499
|
+
properties: *ref_646
|
|
34414
34500
|
tickets.getMessagerequest:
|
|
34415
34501
|
title: tickets.getMessagerequest
|
|
34416
34502
|
type: object
|
|
34417
|
-
properties: *
|
|
34503
|
+
properties: *ref_647
|
|
34418
34504
|
tickets.getMessageresponse:
|
|
34419
34505
|
title: tickets.getMessageresponse
|
|
34420
34506
|
type: object
|
|
34421
|
-
properties: *
|
|
34507
|
+
properties: *ref_648
|
|
34422
34508
|
tickets.importMessagerequest:
|
|
34423
34509
|
title: tickets.importMessagerequest
|
|
34424
|
-
required: *
|
|
34510
|
+
required: *ref_649
|
|
34425
34511
|
type: object
|
|
34426
|
-
properties: *
|
|
34512
|
+
properties: *ref_650
|
|
34427
34513
|
tickets.importMessageresponse:
|
|
34428
34514
|
title: tickets.importMessageresponse
|
|
34429
34515
|
type: object
|
|
34430
|
-
properties: *
|
|
34516
|
+
properties: *ref_651
|
|
34431
34517
|
tickets.addReplyrequest:
|
|
34432
34518
|
title: tickets.addReplyrequest
|
|
34433
|
-
required: *
|
|
34519
|
+
required: *ref_652
|
|
34434
34520
|
type: object
|
|
34435
|
-
properties: *
|
|
34521
|
+
properties: *ref_653
|
|
34436
34522
|
tickets.addReplyresponse:
|
|
34437
34523
|
title: tickets.addReplyresponse
|
|
34438
34524
|
type: object
|
|
34439
|
-
properties: *
|
|
34525
|
+
properties: *ref_654
|
|
34440
34526
|
tickets.addInternalMessagerequest:
|
|
34441
34527
|
title: tickets.addInternalMessagerequest
|
|
34442
|
-
required: *
|
|
34528
|
+
required: *ref_655
|
|
34443
34529
|
type: object
|
|
34444
|
-
properties: *
|
|
34530
|
+
properties: *ref_656
|
|
34445
34531
|
tickets.addInternalMessageresponse:
|
|
34446
34532
|
title: tickets.addInternalMessageresponse
|
|
34447
34533
|
type: object
|
|
34448
|
-
properties: *
|
|
34534
|
+
properties: *ref_657
|
|
34449
34535
|
ticketStatus.listrequest:
|
|
34450
34536
|
title: ticketStatus.listrequest
|
|
34451
34537
|
type: object
|
|
34452
|
-
properties: *
|
|
34538
|
+
properties: *ref_658
|
|
34453
34539
|
ticketStatus.listresponse:
|
|
34454
34540
|
title: ticketStatus.listresponse
|
|
34455
34541
|
type: object
|
|
34456
|
-
properties: *
|
|
34542
|
+
properties: *ref_659
|
|
34457
34543
|
files.listrequest:
|
|
34458
34544
|
title: files.listrequest
|
|
34459
|
-
required: *
|
|
34545
|
+
required: *ref_660
|
|
34460
34546
|
type: object
|
|
34461
|
-
properties: *
|
|
34547
|
+
properties: *ref_661
|
|
34462
34548
|
MimeType:
|
|
34463
34549
|
title: MimeType
|
|
34464
34550
|
enum: *ref_110
|
|
@@ -34466,93 +34552,93 @@ components:
|
|
|
34466
34552
|
files.listresponse:
|
|
34467
34553
|
title: files.listresponse
|
|
34468
34554
|
type: object
|
|
34469
|
-
properties: *
|
|
34555
|
+
properties: *ref_662
|
|
34470
34556
|
files.inforequest:
|
|
34471
34557
|
title: files.inforequest
|
|
34472
|
-
required: *
|
|
34558
|
+
required: *ref_663
|
|
34473
34559
|
type: object
|
|
34474
|
-
properties: *
|
|
34560
|
+
properties: *ref_664
|
|
34475
34561
|
files.inforesponse:
|
|
34476
34562
|
title: files.inforesponse
|
|
34477
34563
|
type: object
|
|
34478
|
-
properties: *
|
|
34564
|
+
properties: *ref_665
|
|
34479
34565
|
files.downloadrequest:
|
|
34480
34566
|
title: files.downloadrequest
|
|
34481
|
-
required: *
|
|
34567
|
+
required: *ref_666
|
|
34482
34568
|
type: object
|
|
34483
|
-
properties: *
|
|
34569
|
+
properties: *ref_667
|
|
34484
34570
|
files.downloadresponse:
|
|
34485
34571
|
title: files.downloadresponse
|
|
34486
34572
|
type: object
|
|
34487
|
-
properties: *
|
|
34573
|
+
properties: *ref_668
|
|
34488
34574
|
files.uploadrequest:
|
|
34489
34575
|
title: files.uploadrequest
|
|
34490
|
-
required: *
|
|
34576
|
+
required: *ref_669
|
|
34491
34577
|
type: object
|
|
34492
|
-
properties: *
|
|
34578
|
+
properties: *ref_670
|
|
34493
34579
|
files.uploadresponse:
|
|
34494
34580
|
title: files.uploadresponse
|
|
34495
34581
|
type: object
|
|
34496
|
-
properties: *
|
|
34582
|
+
properties: *ref_671
|
|
34497
34583
|
files.deleterequest:
|
|
34498
34584
|
title: files.deleterequest
|
|
34499
|
-
required: *
|
|
34585
|
+
required: *ref_672
|
|
34500
34586
|
type: object
|
|
34501
|
-
properties: *
|
|
34587
|
+
properties: *ref_673
|
|
34502
34588
|
mailTemplates.listrequest:
|
|
34503
34589
|
title: mailTemplates.listrequest
|
|
34504
|
-
required: *
|
|
34590
|
+
required: *ref_674
|
|
34505
34591
|
type: object
|
|
34506
|
-
properties: *
|
|
34592
|
+
properties: *ref_675
|
|
34507
34593
|
mailTemplates.listresponse:
|
|
34508
34594
|
title: mailTemplates.listresponse
|
|
34509
34595
|
type: object
|
|
34510
|
-
properties: *
|
|
34596
|
+
properties: *ref_676
|
|
34511
34597
|
migrate.idrequest:
|
|
34512
34598
|
title: migrate.idrequest
|
|
34513
34599
|
type: object
|
|
34514
|
-
properties: *
|
|
34600
|
+
properties: *ref_677
|
|
34515
34601
|
migrate.idresponse:
|
|
34516
34602
|
title: migrate.idresponse
|
|
34517
34603
|
type: object
|
|
34518
|
-
properties: *
|
|
34604
|
+
properties: *ref_678
|
|
34519
34605
|
migrate.taxRaterequest:
|
|
34520
34606
|
title: migrate.taxRaterequest
|
|
34521
34607
|
type: object
|
|
34522
|
-
properties: *
|
|
34608
|
+
properties: *ref_679
|
|
34523
34609
|
migrate.taxRateresponse:
|
|
34524
34610
|
title: migrate.taxRateresponse
|
|
34525
34611
|
type: object
|
|
34526
|
-
properties: *
|
|
34612
|
+
properties: *ref_680
|
|
34527
34613
|
migrate.activityTyperequest:
|
|
34528
34614
|
title: migrate.activityTyperequest
|
|
34529
34615
|
type: object
|
|
34530
|
-
properties: *
|
|
34616
|
+
properties: *ref_681
|
|
34531
34617
|
migrate.activityTyperesponse:
|
|
34532
34618
|
title: migrate.activityTyperesponse
|
|
34533
34619
|
type: object
|
|
34534
|
-
properties: *
|
|
34620
|
+
properties: *ref_682
|
|
34535
34621
|
orders.inforequest:
|
|
34536
34622
|
title: orders.inforequest
|
|
34537
|
-
required: *
|
|
34623
|
+
required: *ref_683
|
|
34538
34624
|
type: object
|
|
34539
|
-
properties: *
|
|
34625
|
+
properties: *ref_684
|
|
34540
34626
|
OrdersGroupedLinesResponse:
|
|
34541
34627
|
title: OrdersGroupedLinesResponse
|
|
34542
34628
|
type: object
|
|
34543
|
-
properties: *
|
|
34629
|
+
properties: *ref_685
|
|
34544
34630
|
orders.inforesponse:
|
|
34545
34631
|
title: orders.inforesponse
|
|
34546
34632
|
type: object
|
|
34547
|
-
properties: *
|
|
34633
|
+
properties: *ref_686
|
|
34548
34634
|
orders.listrequest:
|
|
34549
34635
|
title: orders.listrequest
|
|
34550
34636
|
type: object
|
|
34551
|
-
properties: *
|
|
34637
|
+
properties: *ref_687
|
|
34552
34638
|
orders.listresponse:
|
|
34553
34639
|
title: orders.listresponse
|
|
34554
34640
|
type: object
|
|
34555
|
-
properties: *
|
|
34641
|
+
properties: *ref_688
|
|
34556
34642
|
WebHook:
|
|
34557
34643
|
title: WebHook
|
|
34558
34644
|
required: *ref_111
|
|
@@ -34561,24 +34647,24 @@ components:
|
|
|
34561
34647
|
webhooks.listresponse:
|
|
34562
34648
|
title: webhooks.listresponse
|
|
34563
34649
|
type: object
|
|
34564
|
-
properties: *
|
|
34650
|
+
properties: *ref_689
|
|
34565
34651
|
cloudPlatforms.urlrequest:
|
|
34566
34652
|
title: cloudPlatforms.urlrequest
|
|
34567
|
-
required: *
|
|
34653
|
+
required: *ref_690
|
|
34568
34654
|
type: object
|
|
34569
|
-
properties: *
|
|
34655
|
+
properties: *ref_691
|
|
34570
34656
|
cloudPlatforms.urlresponse:
|
|
34571
34657
|
title: cloudPlatforms.urlresponse
|
|
34572
34658
|
type: object
|
|
34573
|
-
properties: *
|
|
34659
|
+
properties: *ref_692
|
|
34574
34660
|
accounts.projects-v2-statusresponse:
|
|
34575
34661
|
title: accounts.projects-v2-statusresponse
|
|
34576
34662
|
type: object
|
|
34577
|
-
properties: *
|
|
34663
|
+
properties: *ref_693
|
|
34578
34664
|
plannableItems.listrequest:
|
|
34579
34665
|
title: plannableItems.listrequest
|
|
34580
34666
|
type: object
|
|
34581
|
-
properties: *
|
|
34667
|
+
properties: *ref_694
|
|
34582
34668
|
DurationInMinutesFull:
|
|
34583
34669
|
title: DurationInMinutesFull
|
|
34584
34670
|
type: object
|
|
@@ -34586,15 +34672,15 @@ components:
|
|
|
34586
34672
|
plannableItems.listresponse:
|
|
34587
34673
|
title: plannableItems.listresponse
|
|
34588
34674
|
type: object
|
|
34589
|
-
properties: *
|
|
34675
|
+
properties: *ref_695
|
|
34590
34676
|
plannableItems.inforequest:
|
|
34591
34677
|
title: plannableItems.inforequest
|
|
34592
34678
|
type: object
|
|
34593
|
-
properties: *
|
|
34679
|
+
properties: *ref_696
|
|
34594
34680
|
plannableItems.inforesponse:
|
|
34595
34681
|
title: plannableItems.inforesponse
|
|
34596
34682
|
type: object
|
|
34597
|
-
properties: *
|
|
34683
|
+
properties: *ref_697
|
|
34598
34684
|
SourceType:
|
|
34599
34685
|
title: SourceType
|
|
34600
34686
|
enum: *ref_114
|
|
@@ -34602,30 +34688,30 @@ components:
|
|
|
34602
34688
|
reservations.listrequest:
|
|
34603
34689
|
title: reservations.listrequest
|
|
34604
34690
|
type: object
|
|
34605
|
-
properties: *
|
|
34691
|
+
properties: *ref_698
|
|
34606
34692
|
reservations.listresponse:
|
|
34607
34693
|
title: reservations.listresponse
|
|
34608
34694
|
type: object
|
|
34609
|
-
properties: *
|
|
34695
|
+
properties: *ref_699
|
|
34610
34696
|
reservations.createrequest:
|
|
34611
34697
|
title: reservations.createrequest
|
|
34612
34698
|
type: object
|
|
34613
|
-
required: *
|
|
34614
|
-
properties: *
|
|
34699
|
+
required: *ref_700
|
|
34700
|
+
properties: *ref_701
|
|
34615
34701
|
reservations.createresponse:
|
|
34616
34702
|
title: reservations.createresponse
|
|
34617
34703
|
type: object
|
|
34618
|
-
properties: *
|
|
34704
|
+
properties: *ref_702
|
|
34619
34705
|
reservations.updaterequest:
|
|
34620
34706
|
title: reservations.updaterequest
|
|
34621
34707
|
type: object
|
|
34622
|
-
required: *
|
|
34623
|
-
properties: *
|
|
34708
|
+
required: *ref_703
|
|
34709
|
+
properties: *ref_704
|
|
34624
34710
|
reservations.deleterequest:
|
|
34625
34711
|
title: reservations.deleterequest
|
|
34626
34712
|
type: object
|
|
34627
|
-
required: *
|
|
34628
|
-
properties: *
|
|
34713
|
+
required: *ref_705
|
|
34714
|
+
properties: *ref_706
|
|
34629
34715
|
Period:
|
|
34630
34716
|
title: Period
|
|
34631
34717
|
type: object
|
|
@@ -34633,8 +34719,8 @@ components:
|
|
|
34633
34719
|
userAvailability.totalrequest:
|
|
34634
34720
|
title: userAvailability.totalrequest
|
|
34635
34721
|
type: object
|
|
34636
|
-
required: *
|
|
34637
|
-
properties: *
|
|
34722
|
+
required: *ref_707
|
|
34723
|
+
properties: *ref_708
|
|
34638
34724
|
UserAvailability:
|
|
34639
34725
|
title: UserAvailability
|
|
34640
34726
|
type: object
|
|
@@ -34642,16 +34728,16 @@ components:
|
|
|
34642
34728
|
userAvailability.totalresponse:
|
|
34643
34729
|
title: userAvailability.totalresponse
|
|
34644
34730
|
type: object
|
|
34645
|
-
properties: *
|
|
34731
|
+
properties: *ref_709
|
|
34646
34732
|
userAvailability.dailyrequest:
|
|
34647
34733
|
title: userAvailability.dailyrequest
|
|
34648
34734
|
type: object
|
|
34649
|
-
required: *
|
|
34650
|
-
properties: *
|
|
34735
|
+
required: *ref_710
|
|
34736
|
+
properties: *ref_711
|
|
34651
34737
|
userAvailability.dailyresponse:
|
|
34652
34738
|
title: userAvailability.dailyresponse
|
|
34653
34739
|
type: object
|
|
34654
|
-
properties: *
|
|
34740
|
+
properties: *ref_712
|
|
34655
34741
|
x-tagGroups:
|
|
34656
34742
|
- name: General
|
|
34657
34743
|
tags:
|