@teamleader/focus-api-specification 1.15.0 → 1.17.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.17.0
|
|
7
7
|
servers:
|
|
8
8
|
- url: https://api.focus.teamleader.eu
|
|
9
9
|
variables: {}
|
|
@@ -233,6 +233,12 @@ tags:
|
|
|
233
233
|
|
|
234
234
|
***Required scopes:*** `projects`
|
|
235
235
|
x-displayName: Projects
|
|
236
|
+
- name: external_parties
|
|
237
|
+
description: |
|
|
238
|
+
> An external party is a contact or company that is added to a project with an optional function and/or sub function.
|
|
239
|
+
|
|
240
|
+
***Required scopes:*** `projects`
|
|
241
|
+
x-displayName: External parties
|
|
236
242
|
- name: project_lines
|
|
237
243
|
description: |
|
|
238
244
|
> A project line can be a group, a task, or a material.
|
|
@@ -19142,6 +19148,25 @@ paths:
|
|
|
19142
19148
|
example: project
|
|
19143
19149
|
title: TypeAndId
|
|
19144
19150
|
type: object
|
|
19151
|
+
external_parties:
|
|
19152
|
+
type: array
|
|
19153
|
+
items:
|
|
19154
|
+
type: object
|
|
19155
|
+
properties:
|
|
19156
|
+
id:
|
|
19157
|
+
type: string
|
|
19158
|
+
example: e80e3e0f-4008-47cc-aa94-3d71a42052bf
|
|
19159
|
+
customer:
|
|
19160
|
+
title: Customer
|
|
19161
|
+
type: object
|
|
19162
|
+
required: *ref_28
|
|
19163
|
+
properties: *ref_29
|
|
19164
|
+
function:
|
|
19165
|
+
type: string
|
|
19166
|
+
example: Sales representative
|
|
19167
|
+
sub_function:
|
|
19168
|
+
type: string
|
|
19169
|
+
example: Teamleader Focus FR
|
|
19145
19170
|
- example:
|
|
19146
19171
|
data:
|
|
19147
19172
|
id: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -19236,6 +19261,13 @@ paths:
|
|
|
19236
19261
|
legacy_project:
|
|
19237
19262
|
type: project
|
|
19238
19263
|
id: 624ca743-8998-4f8c-add1-c427bb022166
|
|
19264
|
+
external_parties:
|
|
19265
|
+
id: f7fcf4eb-583c-4e6b-88be-2a9e83afdb81
|
|
19266
|
+
customer:
|
|
19267
|
+
type: contact
|
|
19268
|
+
id: 66abace2-62af-0836-a927-fe3f44b9b47b
|
|
19269
|
+
function: Sales representative
|
|
19270
|
+
sub_function: Teamleader Focus FR
|
|
19239
19271
|
example:
|
|
19240
19272
|
data:
|
|
19241
19273
|
id: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -19330,6 +19362,13 @@ paths:
|
|
|
19330
19362
|
legacy_project:
|
|
19331
19363
|
type: project
|
|
19332
19364
|
id: 624ca743-8998-4f8c-add1-c427bb022166
|
|
19365
|
+
external_parties:
|
|
19366
|
+
- id: f7fcf4eb-583c-4e6b-88be-2a9e83afdb81
|
|
19367
|
+
customer:
|
|
19368
|
+
type: contact
|
|
19369
|
+
id: 66abace2-62af-0836-a927-fe3f44b9b47b
|
|
19370
|
+
function: Sales representative
|
|
19371
|
+
sub_function: Teamleader Focus FR
|
|
19333
19372
|
deprecated: false
|
|
19334
19373
|
/projects-v2/projects.create:
|
|
19335
19374
|
post:
|
|
@@ -20447,6 +20486,150 @@ paths:
|
|
|
20447
20486
|
headers: {}
|
|
20448
20487
|
content: {}
|
|
20449
20488
|
deprecated: false
|
|
20489
|
+
/projects-v2/externalParties.addToProject:
|
|
20490
|
+
post:
|
|
20491
|
+
tags:
|
|
20492
|
+
- external_parties
|
|
20493
|
+
summary: externalParties.addToProject
|
|
20494
|
+
description: Add an external party to a project.
|
|
20495
|
+
operationId: NextgenProjectsExternalParties.addToProject
|
|
20496
|
+
parameters: []
|
|
20497
|
+
requestBody:
|
|
20498
|
+
description: ''
|
|
20499
|
+
content:
|
|
20500
|
+
application/json:
|
|
20501
|
+
schema:
|
|
20502
|
+
allOf:
|
|
20503
|
+
- title: projects-v2_externalParties.addToProjectrequest
|
|
20504
|
+
required: &ref_511
|
|
20505
|
+
- project_id
|
|
20506
|
+
- customer
|
|
20507
|
+
type: object
|
|
20508
|
+
properties: &ref_512
|
|
20509
|
+
project_id:
|
|
20510
|
+
type: string
|
|
20511
|
+
example: 7257b535-d40f-4699-b3bd-63679379b579
|
|
20512
|
+
customer:
|
|
20513
|
+
title: Customer
|
|
20514
|
+
type: object
|
|
20515
|
+
required: *ref_28
|
|
20516
|
+
properties: *ref_29
|
|
20517
|
+
function:
|
|
20518
|
+
type: string
|
|
20519
|
+
example: Project Manager
|
|
20520
|
+
sub_function:
|
|
20521
|
+
type: string
|
|
20522
|
+
example: Project Coordinator
|
|
20523
|
+
- example:
|
|
20524
|
+
project_id: 48ef99b9-4a20-4071-888d-0927f45c03d5
|
|
20525
|
+
customer:
|
|
20526
|
+
type: contact
|
|
20527
|
+
id: adfec6b9-a8d7-403d-bde3-093ad50d74c2
|
|
20528
|
+
function: Sales representative
|
|
20529
|
+
sub_function: Teamleader Focus Sales FR
|
|
20530
|
+
example:
|
|
20531
|
+
project_id: 48ef99b9-4a20-4071-888d-0927f45c03d5
|
|
20532
|
+
customer:
|
|
20533
|
+
type: contact
|
|
20534
|
+
id: adfec6b9-a8d7-403d-bde3-093ad50d74c2
|
|
20535
|
+
function: Sales representative
|
|
20536
|
+
sub_function: Teamleader Focus Sales FR
|
|
20537
|
+
required: true
|
|
20538
|
+
responses:
|
|
20539
|
+
'204':
|
|
20540
|
+
description: ''
|
|
20541
|
+
headers: {}
|
|
20542
|
+
content: {}
|
|
20543
|
+
deprecated: false
|
|
20544
|
+
/projects-v2/externalParties.update:
|
|
20545
|
+
post:
|
|
20546
|
+
tags:
|
|
20547
|
+
- external_parties
|
|
20548
|
+
summary: externalParties.update
|
|
20549
|
+
description: Update an external party.
|
|
20550
|
+
operationId: NextgenProjectsExternalParties.update
|
|
20551
|
+
parameters: []
|
|
20552
|
+
requestBody:
|
|
20553
|
+
description: ''
|
|
20554
|
+
content:
|
|
20555
|
+
application/json:
|
|
20556
|
+
schema:
|
|
20557
|
+
allOf:
|
|
20558
|
+
- title: projects-v2_externalParties.updaterequest
|
|
20559
|
+
required: &ref_513
|
|
20560
|
+
- id
|
|
20561
|
+
type: object
|
|
20562
|
+
properties: &ref_514
|
|
20563
|
+
id:
|
|
20564
|
+
type: string
|
|
20565
|
+
example: 6126596f-6193-445a-935a-60c10df9f632
|
|
20566
|
+
customer:
|
|
20567
|
+
title: Customer
|
|
20568
|
+
type: object
|
|
20569
|
+
required: *ref_28
|
|
20570
|
+
properties: *ref_29
|
|
20571
|
+
function:
|
|
20572
|
+
type: string
|
|
20573
|
+
example: Project Manager
|
|
20574
|
+
nullable: true
|
|
20575
|
+
sub_function:
|
|
20576
|
+
type: string
|
|
20577
|
+
example: Project Coordinator
|
|
20578
|
+
nullable: true
|
|
20579
|
+
- example:
|
|
20580
|
+
id: 48ef99b9-4a20-4071-888d-0927f45c03d5
|
|
20581
|
+
customer:
|
|
20582
|
+
type: contact
|
|
20583
|
+
id: adfec6b9-a8d7-403d-bde3-093ad50d74c2
|
|
20584
|
+
function: Sales representative
|
|
20585
|
+
sub_function: null
|
|
20586
|
+
example:
|
|
20587
|
+
id: 48ef99b9-4a20-4071-888d-0927f45c03d5
|
|
20588
|
+
customer:
|
|
20589
|
+
type: contact
|
|
20590
|
+
id: adfec6b9-a8d7-403d-bde3-093ad50d74c2
|
|
20591
|
+
function: Sales representative
|
|
20592
|
+
sub_function: null
|
|
20593
|
+
required: true
|
|
20594
|
+
responses:
|
|
20595
|
+
'204':
|
|
20596
|
+
description: ''
|
|
20597
|
+
headers: {}
|
|
20598
|
+
content: {}
|
|
20599
|
+
deprecated: false
|
|
20600
|
+
/projects-v2/externalParties.delete:
|
|
20601
|
+
post:
|
|
20602
|
+
tags:
|
|
20603
|
+
- external_parties
|
|
20604
|
+
summary: externalParties.delete
|
|
20605
|
+
description: Delete an external party.
|
|
20606
|
+
operationId: NextgenProjectsExternalParties.delete
|
|
20607
|
+
parameters: []
|
|
20608
|
+
requestBody:
|
|
20609
|
+
description: ''
|
|
20610
|
+
content:
|
|
20611
|
+
application/json:
|
|
20612
|
+
schema:
|
|
20613
|
+
allOf:
|
|
20614
|
+
- title: projects-v2_externalParties.deleterequest
|
|
20615
|
+
required: &ref_515
|
|
20616
|
+
- id
|
|
20617
|
+
type: object
|
|
20618
|
+
properties: &ref_516
|
|
20619
|
+
id:
|
|
20620
|
+
type: string
|
|
20621
|
+
example: 6126596f-6193-445a-935a-60c10df9f632
|
|
20622
|
+
- example:
|
|
20623
|
+
id: 48ef99b9-4a20-4071-888d-0927f45c03d5
|
|
20624
|
+
example:
|
|
20625
|
+
id: 48ef99b9-4a20-4071-888d-0927f45c03d5
|
|
20626
|
+
required: true
|
|
20627
|
+
responses:
|
|
20628
|
+
'204':
|
|
20629
|
+
description: ''
|
|
20630
|
+
headers: {}
|
|
20631
|
+
content: {}
|
|
20632
|
+
deprecated: false
|
|
20450
20633
|
/projects-v2/projectLines.list:
|
|
20451
20634
|
post:
|
|
20452
20635
|
tags:
|
|
@@ -20462,10 +20645,10 @@ paths:
|
|
|
20462
20645
|
schema:
|
|
20463
20646
|
allOf:
|
|
20464
20647
|
- title: projects-v2_projectLines.listrequest
|
|
20465
|
-
required: &
|
|
20648
|
+
required: &ref_517
|
|
20466
20649
|
- project_id
|
|
20467
20650
|
type: object
|
|
20468
|
-
properties: &
|
|
20651
|
+
properties: &ref_518
|
|
20469
20652
|
project_id:
|
|
20470
20653
|
type: string
|
|
20471
20654
|
example: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -20531,7 +20714,7 @@ paths:
|
|
|
20531
20714
|
allOf:
|
|
20532
20715
|
- title: projects-v2_projectLines.listresponse
|
|
20533
20716
|
type: object
|
|
20534
|
-
properties: &
|
|
20717
|
+
properties: &ref_519
|
|
20535
20718
|
data:
|
|
20536
20719
|
type: array
|
|
20537
20720
|
items:
|
|
@@ -20594,11 +20777,11 @@ paths:
|
|
|
20594
20777
|
schema:
|
|
20595
20778
|
allOf:
|
|
20596
20779
|
- title: projects-v2_projectLines.addToGrouprequest
|
|
20597
|
-
required: &
|
|
20780
|
+
required: &ref_520
|
|
20598
20781
|
- line_id
|
|
20599
20782
|
- group_id
|
|
20600
20783
|
type: object
|
|
20601
|
-
properties: &
|
|
20784
|
+
properties: &ref_521
|
|
20602
20785
|
line_id:
|
|
20603
20786
|
type: string
|
|
20604
20787
|
description: The ID of the task or material. May not be a group.
|
|
@@ -20634,10 +20817,10 @@ paths:
|
|
|
20634
20817
|
schema:
|
|
20635
20818
|
allOf:
|
|
20636
20819
|
- title: projects-v2_projectLines.removeFromGrouprequest
|
|
20637
|
-
required: &
|
|
20820
|
+
required: &ref_522
|
|
20638
20821
|
- line_id
|
|
20639
20822
|
type: object
|
|
20640
|
-
properties: &
|
|
20823
|
+
properties: &ref_523
|
|
20641
20824
|
line_id:
|
|
20642
20825
|
type: string
|
|
20643
20826
|
description: The ID of the task or material. May not be a group.
|
|
@@ -20669,7 +20852,7 @@ paths:
|
|
|
20669
20852
|
allOf:
|
|
20670
20853
|
- title: projects-v2_projectGroups.listrequest
|
|
20671
20854
|
type: object
|
|
20672
|
-
properties: &
|
|
20855
|
+
properties: &ref_524
|
|
20673
20856
|
filter:
|
|
20674
20857
|
type: object
|
|
20675
20858
|
properties:
|
|
@@ -20704,7 +20887,7 @@ paths:
|
|
|
20704
20887
|
allOf:
|
|
20705
20888
|
- title: projects-v2_projectGroups.listresponse
|
|
20706
20889
|
type: object
|
|
20707
|
-
properties: &
|
|
20890
|
+
properties: &ref_525
|
|
20708
20891
|
data:
|
|
20709
20892
|
type: array
|
|
20710
20893
|
items:
|
|
@@ -20996,10 +21179,10 @@ paths:
|
|
|
20996
21179
|
schema:
|
|
20997
21180
|
allOf:
|
|
20998
21181
|
- title: projects-v2_projectGroups.inforequest
|
|
20999
|
-
required: &
|
|
21182
|
+
required: &ref_526
|
|
21000
21183
|
- id
|
|
21001
21184
|
type: object
|
|
21002
|
-
properties: &
|
|
21185
|
+
properties: &ref_527
|
|
21003
21186
|
id:
|
|
21004
21187
|
type: string
|
|
21005
21188
|
example: cfe2666c-b0f4-4e85-8d6f-9e1284706d0a
|
|
@@ -21018,7 +21201,7 @@ paths:
|
|
|
21018
21201
|
allOf:
|
|
21019
21202
|
- title: projects-v2_projectGroups.inforesponse
|
|
21020
21203
|
type: object
|
|
21021
|
-
properties: &
|
|
21204
|
+
properties: &ref_528
|
|
21022
21205
|
data:
|
|
21023
21206
|
type: object
|
|
21024
21207
|
properties:
|
|
@@ -21309,11 +21492,11 @@ paths:
|
|
|
21309
21492
|
schema:
|
|
21310
21493
|
allOf:
|
|
21311
21494
|
- title: projects-v2_projectGroups.createrequest
|
|
21312
|
-
required: &
|
|
21495
|
+
required: &ref_529
|
|
21313
21496
|
- project_id
|
|
21314
21497
|
- title
|
|
21315
21498
|
type: object
|
|
21316
|
-
properties: &
|
|
21499
|
+
properties: &ref_530
|
|
21317
21500
|
project_id:
|
|
21318
21501
|
type: string
|
|
21319
21502
|
example: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -21438,7 +21621,7 @@ paths:
|
|
|
21438
21621
|
allOf:
|
|
21439
21622
|
- title: projects-v2_projectGroups.createresponse
|
|
21440
21623
|
type: object
|
|
21441
|
-
properties: &
|
|
21624
|
+
properties: &ref_531
|
|
21442
21625
|
data:
|
|
21443
21626
|
title: TypeAndId
|
|
21444
21627
|
type: object
|
|
@@ -21467,10 +21650,10 @@ paths:
|
|
|
21467
21650
|
schema:
|
|
21468
21651
|
allOf:
|
|
21469
21652
|
- title: projects-v2_projectGroups.updaterequest
|
|
21470
|
-
required: &
|
|
21653
|
+
required: &ref_532
|
|
21471
21654
|
- id
|
|
21472
21655
|
type: object
|
|
21473
|
-
properties: &
|
|
21656
|
+
properties: &ref_533
|
|
21474
21657
|
id:
|
|
21475
21658
|
type: string
|
|
21476
21659
|
example: e8478f2c-05a1-4e69-b3c4-e08507640f01
|
|
@@ -21600,10 +21783,10 @@ paths:
|
|
|
21600
21783
|
schema:
|
|
21601
21784
|
allOf:
|
|
21602
21785
|
- title: projects-v2_projectGroups.duplicaterequest
|
|
21603
|
-
required: &
|
|
21786
|
+
required: &ref_534
|
|
21604
21787
|
- origin_id
|
|
21605
21788
|
type: object
|
|
21606
|
-
properties: &
|
|
21789
|
+
properties: &ref_535
|
|
21607
21790
|
origin_id:
|
|
21608
21791
|
type: string
|
|
21609
21792
|
description: The id of the group that is being duplicated
|
|
@@ -21623,7 +21806,7 @@ paths:
|
|
|
21623
21806
|
allOf:
|
|
21624
21807
|
- title: projects-v2_projectGroups.duplicateresponse
|
|
21625
21808
|
type: object
|
|
21626
|
-
properties: &
|
|
21809
|
+
properties: &ref_536
|
|
21627
21810
|
data:
|
|
21628
21811
|
title: TypeAndId
|
|
21629
21812
|
type: object
|
|
@@ -21652,11 +21835,11 @@ paths:
|
|
|
21652
21835
|
schema:
|
|
21653
21836
|
allOf:
|
|
21654
21837
|
- title: projects-v2_projectGroups.deleterequest
|
|
21655
|
-
required: &
|
|
21838
|
+
required: &ref_537
|
|
21656
21839
|
- id
|
|
21657
21840
|
- delete_strategy
|
|
21658
21841
|
type: object
|
|
21659
|
-
properties: &
|
|
21842
|
+
properties: &ref_538
|
|
21660
21843
|
id:
|
|
21661
21844
|
type: string
|
|
21662
21845
|
example: 01866e6f-f264-7fe5-8b7c-a3f739fa292c
|
|
@@ -21695,11 +21878,11 @@ paths:
|
|
|
21695
21878
|
schema:
|
|
21696
21879
|
allOf:
|
|
21697
21880
|
- title: projects-v2_projectGroups.assignrequest
|
|
21698
|
-
required: &
|
|
21881
|
+
required: &ref_539
|
|
21699
21882
|
- id
|
|
21700
21883
|
- assignee
|
|
21701
21884
|
type: object
|
|
21702
|
-
properties: &
|
|
21885
|
+
properties: &ref_540
|
|
21703
21886
|
id:
|
|
21704
21887
|
type: string
|
|
21705
21888
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -21751,11 +21934,11 @@ paths:
|
|
|
21751
21934
|
schema:
|
|
21752
21935
|
allOf:
|
|
21753
21936
|
- title: projects-v2_projectGroups.unassignrequest
|
|
21754
|
-
required: &
|
|
21937
|
+
required: &ref_541
|
|
21755
21938
|
- id
|
|
21756
21939
|
- assignee
|
|
21757
21940
|
type: object
|
|
21758
|
-
properties: &
|
|
21941
|
+
properties: &ref_542
|
|
21759
21942
|
id:
|
|
21760
21943
|
type: string
|
|
21761
21944
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -21808,7 +21991,7 @@ paths:
|
|
|
21808
21991
|
allOf:
|
|
21809
21992
|
- title: projects-v2_tasks.listrequest
|
|
21810
21993
|
type: object
|
|
21811
|
-
properties: &
|
|
21994
|
+
properties: &ref_543
|
|
21812
21995
|
filter:
|
|
21813
21996
|
type: object
|
|
21814
21997
|
properties:
|
|
@@ -21847,7 +22030,7 @@ paths:
|
|
|
21847
22030
|
allOf:
|
|
21848
22031
|
- title: projects-v2_tasks.listresponse
|
|
21849
22032
|
type: object
|
|
21850
|
-
properties: &
|
|
22033
|
+
properties: &ref_544
|
|
21851
22034
|
data:
|
|
21852
22035
|
type: array
|
|
21853
22036
|
items:
|
|
@@ -22236,7 +22419,7 @@ paths:
|
|
|
22236
22419
|
allOf:
|
|
22237
22420
|
- title: projects-v2_tasks.inforesponse
|
|
22238
22421
|
type: object
|
|
22239
|
-
properties: &
|
|
22422
|
+
properties: &ref_545
|
|
22240
22423
|
data:
|
|
22241
22424
|
type: object
|
|
22242
22425
|
properties:
|
|
@@ -22623,11 +22806,11 @@ paths:
|
|
|
22623
22806
|
schema:
|
|
22624
22807
|
allOf:
|
|
22625
22808
|
- title: projects-v2_tasks.createrequest
|
|
22626
|
-
required: &
|
|
22809
|
+
required: &ref_546
|
|
22627
22810
|
- project_id
|
|
22628
22811
|
- title
|
|
22629
22812
|
type: object
|
|
22630
|
-
properties: &
|
|
22813
|
+
properties: &ref_547
|
|
22631
22814
|
project_id:
|
|
22632
22815
|
type: string
|
|
22633
22816
|
example: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -22831,10 +23014,10 @@ paths:
|
|
|
22831
23014
|
schema:
|
|
22832
23015
|
allOf:
|
|
22833
23016
|
- title: projects-v2_tasks.updaterequest
|
|
22834
|
-
required: &
|
|
23017
|
+
required: &ref_548
|
|
22835
23018
|
- id
|
|
22836
23019
|
type: object
|
|
22837
|
-
properties: &
|
|
23020
|
+
properties: &ref_549
|
|
22838
23021
|
id:
|
|
22839
23022
|
type: string
|
|
22840
23023
|
example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
|
|
@@ -23006,10 +23189,10 @@ paths:
|
|
|
23006
23189
|
schema:
|
|
23007
23190
|
allOf:
|
|
23008
23191
|
- title: projects-v2_tasks.duplicaterequest
|
|
23009
|
-
required: &
|
|
23192
|
+
required: &ref_550
|
|
23010
23193
|
- origin_id
|
|
23011
23194
|
type: object
|
|
23012
|
-
properties: &
|
|
23195
|
+
properties: &ref_551
|
|
23013
23196
|
origin_id:
|
|
23014
23197
|
type: string
|
|
23015
23198
|
description: The id of the task that is being duplicated
|
|
@@ -23029,7 +23212,7 @@ paths:
|
|
|
23029
23212
|
allOf:
|
|
23030
23213
|
- title: projects-v2_tasks.duplicateresponse
|
|
23031
23214
|
type: object
|
|
23032
|
-
properties: &
|
|
23215
|
+
properties: &ref_552
|
|
23033
23216
|
data:
|
|
23034
23217
|
title: TypeAndId
|
|
23035
23218
|
type: object
|
|
@@ -23058,11 +23241,11 @@ paths:
|
|
|
23058
23241
|
schema:
|
|
23059
23242
|
allOf:
|
|
23060
23243
|
- title: projects-v2_tasks.deleterequest
|
|
23061
|
-
required: &
|
|
23244
|
+
required: &ref_553
|
|
23062
23245
|
- id
|
|
23063
23246
|
- delete_strategy
|
|
23064
23247
|
type: object
|
|
23065
|
-
properties: &
|
|
23248
|
+
properties: &ref_554
|
|
23066
23249
|
id:
|
|
23067
23250
|
type: string
|
|
23068
23251
|
example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
|
|
@@ -23100,11 +23283,11 @@ paths:
|
|
|
23100
23283
|
schema:
|
|
23101
23284
|
allOf:
|
|
23102
23285
|
- title: projects-v2_tasks.assignrequest
|
|
23103
|
-
required: &
|
|
23286
|
+
required: &ref_555
|
|
23104
23287
|
- id
|
|
23105
23288
|
- assignee
|
|
23106
23289
|
type: object
|
|
23107
|
-
properties: &
|
|
23290
|
+
properties: &ref_556
|
|
23108
23291
|
id:
|
|
23109
23292
|
type: string
|
|
23110
23293
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -23156,11 +23339,11 @@ paths:
|
|
|
23156
23339
|
schema:
|
|
23157
23340
|
allOf:
|
|
23158
23341
|
- title: projects-v2_tasks.unassignrequest
|
|
23159
|
-
required: &
|
|
23342
|
+
required: &ref_557
|
|
23160
23343
|
- id
|
|
23161
23344
|
- assignee
|
|
23162
23345
|
type: object
|
|
23163
|
-
properties: &
|
|
23346
|
+
properties: &ref_558
|
|
23164
23347
|
id:
|
|
23165
23348
|
type: string
|
|
23166
23349
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -23213,7 +23396,7 @@ paths:
|
|
|
23213
23396
|
allOf:
|
|
23214
23397
|
- title: projects-v2_materials.listrequest
|
|
23215
23398
|
type: object
|
|
23216
|
-
properties: &
|
|
23399
|
+
properties: &ref_559
|
|
23217
23400
|
filter:
|
|
23218
23401
|
type: object
|
|
23219
23402
|
properties:
|
|
@@ -23242,7 +23425,7 @@ paths:
|
|
|
23242
23425
|
allOf:
|
|
23243
23426
|
- title: projects-v2_materials.listresponse
|
|
23244
23427
|
type: object
|
|
23245
|
-
properties: &
|
|
23428
|
+
properties: &ref_560
|
|
23246
23429
|
data:
|
|
23247
23430
|
type: array
|
|
23248
23431
|
items:
|
|
@@ -23556,10 +23739,10 @@ paths:
|
|
|
23556
23739
|
schema:
|
|
23557
23740
|
allOf:
|
|
23558
23741
|
- title: projects-v2_materials.inforequest
|
|
23559
|
-
required: &
|
|
23742
|
+
required: &ref_561
|
|
23560
23743
|
- id
|
|
23561
23744
|
type: object
|
|
23562
|
-
properties: &
|
|
23745
|
+
properties: &ref_562
|
|
23563
23746
|
id:
|
|
23564
23747
|
type: string
|
|
23565
23748
|
example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
|
|
@@ -23578,7 +23761,7 @@ paths:
|
|
|
23578
23761
|
allOf:
|
|
23579
23762
|
- title: projects-v2_materials.inforesponse
|
|
23580
23763
|
type: object
|
|
23581
|
-
properties: &
|
|
23764
|
+
properties: &ref_563
|
|
23582
23765
|
data:
|
|
23583
23766
|
type: object
|
|
23584
23767
|
properties:
|
|
@@ -23896,11 +24079,11 @@ paths:
|
|
|
23896
24079
|
schema:
|
|
23897
24080
|
allOf:
|
|
23898
24081
|
- title: projects-v2_materials.createrequest
|
|
23899
|
-
required: &
|
|
24082
|
+
required: &ref_564
|
|
23900
24083
|
- project_id
|
|
23901
24084
|
- title
|
|
23902
24085
|
type: object
|
|
23903
|
-
properties: &
|
|
24086
|
+
properties: &ref_565
|
|
23904
24087
|
project_id:
|
|
23905
24088
|
type: string
|
|
23906
24089
|
example: 49b403be-a32e-0901-9b1c-25214f9027c6
|
|
@@ -24069,7 +24252,7 @@ paths:
|
|
|
24069
24252
|
allOf:
|
|
24070
24253
|
- title: projects-v2_materials.createresponse
|
|
24071
24254
|
type: object
|
|
24072
|
-
properties: &
|
|
24255
|
+
properties: &ref_566
|
|
24073
24256
|
data:
|
|
24074
24257
|
title: TypeAndId
|
|
24075
24258
|
type: object
|
|
@@ -24098,10 +24281,10 @@ paths:
|
|
|
24098
24281
|
schema:
|
|
24099
24282
|
allOf:
|
|
24100
24283
|
- title: projects-v2_materials.updaterequest
|
|
24101
|
-
required: &
|
|
24284
|
+
required: &ref_567
|
|
24102
24285
|
- id
|
|
24103
24286
|
type: object
|
|
24104
|
-
properties: &
|
|
24287
|
+
properties: &ref_568
|
|
24105
24288
|
id:
|
|
24106
24289
|
type: string
|
|
24107
24290
|
example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
|
|
@@ -24256,10 +24439,10 @@ paths:
|
|
|
24256
24439
|
schema:
|
|
24257
24440
|
allOf:
|
|
24258
24441
|
- title: projects-v2_materials.duplicaterequest
|
|
24259
|
-
required: &
|
|
24442
|
+
required: &ref_569
|
|
24260
24443
|
- origin_id
|
|
24261
24444
|
type: object
|
|
24262
|
-
properties: &
|
|
24445
|
+
properties: &ref_570
|
|
24263
24446
|
origin_id:
|
|
24264
24447
|
type: string
|
|
24265
24448
|
description: The id of the material that is being duplicated
|
|
@@ -24279,7 +24462,7 @@ paths:
|
|
|
24279
24462
|
allOf:
|
|
24280
24463
|
- title: projects-v2_materials.duplicateresponse
|
|
24281
24464
|
type: object
|
|
24282
|
-
properties: &
|
|
24465
|
+
properties: &ref_571
|
|
24283
24466
|
data:
|
|
24284
24467
|
title: TypeAndId
|
|
24285
24468
|
type: object
|
|
@@ -24308,10 +24491,10 @@ paths:
|
|
|
24308
24491
|
schema:
|
|
24309
24492
|
allOf:
|
|
24310
24493
|
- title: projects-v2_materials.deleterequest
|
|
24311
|
-
required: &
|
|
24494
|
+
required: &ref_572
|
|
24312
24495
|
- id
|
|
24313
24496
|
type: object
|
|
24314
|
-
properties: &
|
|
24497
|
+
properties: &ref_573
|
|
24315
24498
|
id:
|
|
24316
24499
|
type: string
|
|
24317
24500
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -24341,11 +24524,11 @@ paths:
|
|
|
24341
24524
|
schema:
|
|
24342
24525
|
allOf:
|
|
24343
24526
|
- title: projects-v2_materials.assignrequest
|
|
24344
|
-
required: &
|
|
24527
|
+
required: &ref_574
|
|
24345
24528
|
- id
|
|
24346
24529
|
- assignee
|
|
24347
24530
|
type: object
|
|
24348
|
-
properties: &
|
|
24531
|
+
properties: &ref_575
|
|
24349
24532
|
id:
|
|
24350
24533
|
type: string
|
|
24351
24534
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -24397,11 +24580,11 @@ paths:
|
|
|
24397
24580
|
schema:
|
|
24398
24581
|
allOf:
|
|
24399
24582
|
- title: projects-v2_materials.unassignrequest
|
|
24400
|
-
required: &
|
|
24583
|
+
required: &ref_576
|
|
24401
24584
|
- id
|
|
24402
24585
|
- assignee
|
|
24403
24586
|
type: object
|
|
24404
|
-
properties: &
|
|
24587
|
+
properties: &ref_577
|
|
24405
24588
|
id:
|
|
24406
24589
|
type: string
|
|
24407
24590
|
example: 0184f276-811b-716d-8b79-17628c9573c6
|
|
@@ -24454,7 +24637,7 @@ paths:
|
|
|
24454
24637
|
allOf:
|
|
24455
24638
|
- title: tasks.listrequest1
|
|
24456
24639
|
type: object
|
|
24457
|
-
properties: &
|
|
24640
|
+
properties: &ref_578
|
|
24458
24641
|
filter:
|
|
24459
24642
|
type: object
|
|
24460
24643
|
properties:
|
|
@@ -24522,7 +24705,7 @@ paths:
|
|
|
24522
24705
|
allOf:
|
|
24523
24706
|
- title: tasks.listresponse1
|
|
24524
24707
|
type: object
|
|
24525
|
-
properties: &
|
|
24708
|
+
properties: &ref_579
|
|
24526
24709
|
data:
|
|
24527
24710
|
type: array
|
|
24528
24711
|
items:
|
|
@@ -24728,7 +24911,7 @@ paths:
|
|
|
24728
24911
|
allOf:
|
|
24729
24912
|
- title: tasks.inforesponse1
|
|
24730
24913
|
type: object
|
|
24731
|
-
properties: &
|
|
24914
|
+
properties: &ref_580
|
|
24732
24915
|
data:
|
|
24733
24916
|
type: object
|
|
24734
24917
|
properties:
|
|
@@ -24919,12 +25102,12 @@ paths:
|
|
|
24919
25102
|
application/json:
|
|
24920
25103
|
schema:
|
|
24921
25104
|
title: tasks.createrequest1
|
|
24922
|
-
required: &
|
|
25105
|
+
required: &ref_581
|
|
24923
25106
|
- title
|
|
24924
25107
|
- due_on
|
|
24925
25108
|
- work_type_id
|
|
24926
25109
|
type: object
|
|
24927
|
-
properties: &
|
|
25110
|
+
properties: &ref_582
|
|
24928
25111
|
title:
|
|
24929
25112
|
type: string
|
|
24930
25113
|
description:
|
|
@@ -25016,10 +25199,10 @@ paths:
|
|
|
25016
25199
|
application/json:
|
|
25017
25200
|
schema:
|
|
25018
25201
|
title: tasks.updaterequest1
|
|
25019
|
-
required: &
|
|
25202
|
+
required: &ref_583
|
|
25020
25203
|
- id
|
|
25021
25204
|
type: object
|
|
25022
|
-
properties: &
|
|
25205
|
+
properties: &ref_584
|
|
25023
25206
|
id:
|
|
25024
25207
|
type: string
|
|
25025
25208
|
example: 00ed6266-a5bd-4aac-a292-2582017b6400
|
|
@@ -25105,10 +25288,10 @@ paths:
|
|
|
25105
25288
|
schema:
|
|
25106
25289
|
allOf:
|
|
25107
25290
|
- title: tasks.completerequest
|
|
25108
|
-
required: &
|
|
25291
|
+
required: &ref_585
|
|
25109
25292
|
- id
|
|
25110
25293
|
type: object
|
|
25111
|
-
properties: &
|
|
25294
|
+
properties: &ref_586
|
|
25112
25295
|
id:
|
|
25113
25296
|
type: string
|
|
25114
25297
|
example: 46156648-87c6-478d-8aa7-1dc3a00dacab
|
|
@@ -25138,10 +25321,10 @@ paths:
|
|
|
25138
25321
|
schema:
|
|
25139
25322
|
allOf:
|
|
25140
25323
|
- title: tasks.reopenrequest
|
|
25141
|
-
required: &
|
|
25324
|
+
required: &ref_587
|
|
25142
25325
|
- id
|
|
25143
25326
|
type: object
|
|
25144
|
-
properties: &
|
|
25327
|
+
properties: &ref_588
|
|
25145
25328
|
id:
|
|
25146
25329
|
type: string
|
|
25147
25330
|
example: 46156648-87c6-478d-8aa7-1dc3a00dacab
|
|
@@ -25171,10 +25354,10 @@ paths:
|
|
|
25171
25354
|
schema:
|
|
25172
25355
|
allOf:
|
|
25173
25356
|
- title: tasks.deleterequest1
|
|
25174
|
-
required: &
|
|
25357
|
+
required: &ref_589
|
|
25175
25358
|
- id
|
|
25176
25359
|
type: object
|
|
25177
|
-
properties: &
|
|
25360
|
+
properties: &ref_590
|
|
25178
25361
|
id:
|
|
25179
25362
|
type: string
|
|
25180
25363
|
example: 5f0afd8a-8a40-48a4-bbe6-7d0e9c61bb6d
|
|
@@ -25204,12 +25387,12 @@ paths:
|
|
|
25204
25387
|
schema:
|
|
25205
25388
|
allOf:
|
|
25206
25389
|
- title: tasks.schedulerequest
|
|
25207
|
-
required: &
|
|
25390
|
+
required: &ref_591
|
|
25208
25391
|
- id
|
|
25209
25392
|
- starts_at
|
|
25210
25393
|
- ends_at
|
|
25211
25394
|
type: object
|
|
25212
|
-
properties: &
|
|
25395
|
+
properties: &ref_592
|
|
25213
25396
|
id:
|
|
25214
25397
|
type: string
|
|
25215
25398
|
example: 7c70c54e-6e50-4e6a-b5fd-80234eb535cf
|
|
@@ -25238,7 +25421,7 @@ paths:
|
|
|
25238
25421
|
allOf:
|
|
25239
25422
|
- title: tasks.scheduleresponse
|
|
25240
25423
|
type: object
|
|
25241
|
-
properties: &
|
|
25424
|
+
properties: &ref_593
|
|
25242
25425
|
data:
|
|
25243
25426
|
title: TypeAndId
|
|
25244
25427
|
type: object
|
|
@@ -25268,7 +25451,7 @@ paths:
|
|
|
25268
25451
|
allOf:
|
|
25269
25452
|
- title: timeTracking.listrequest
|
|
25270
25453
|
type: object
|
|
25271
|
-
properties: &
|
|
25454
|
+
properties: &ref_594
|
|
25272
25455
|
filter:
|
|
25273
25456
|
type: object
|
|
25274
25457
|
properties:
|
|
@@ -25374,7 +25557,7 @@ paths:
|
|
|
25374
25557
|
allOf:
|
|
25375
25558
|
- title: timeTracking.listresponse
|
|
25376
25559
|
type: object
|
|
25377
|
-
properties: &
|
|
25560
|
+
properties: &ref_595
|
|
25378
25561
|
data:
|
|
25379
25562
|
type: array
|
|
25380
25563
|
items:
|
|
@@ -25581,10 +25764,10 @@ paths:
|
|
|
25581
25764
|
schema:
|
|
25582
25765
|
allOf:
|
|
25583
25766
|
- title: timeTracking.inforequest
|
|
25584
|
-
required: &
|
|
25767
|
+
required: &ref_596
|
|
25585
25768
|
- id
|
|
25586
25769
|
type: object
|
|
25587
|
-
properties: &
|
|
25770
|
+
properties: &ref_597
|
|
25588
25771
|
id:
|
|
25589
25772
|
type: string
|
|
25590
25773
|
example: 6caeea11-aa83-4da9-9859-5b62bbf3a476
|
|
@@ -25609,7 +25792,7 @@ paths:
|
|
|
25609
25792
|
allOf:
|
|
25610
25793
|
- title: timeTracking.inforesponse
|
|
25611
25794
|
type: object
|
|
25612
|
-
properties: &
|
|
25795
|
+
properties: &ref_598
|
|
25613
25796
|
data:
|
|
25614
25797
|
type: object
|
|
25615
25798
|
properties:
|
|
@@ -25802,7 +25985,7 @@ paths:
|
|
|
25802
25985
|
allOf:
|
|
25803
25986
|
- title: timeTracking.addrequest
|
|
25804
25987
|
type: object
|
|
25805
|
-
properties: &
|
|
25988
|
+
properties: &ref_599
|
|
25806
25989
|
work_type_id:
|
|
25807
25990
|
type: string
|
|
25808
25991
|
example: 2175597d-484e-4a1c-a781-cbc3d9f893ba
|
|
@@ -25833,7 +26016,7 @@ paths:
|
|
|
25833
26016
|
type: string
|
|
25834
26017
|
description: To add tracked time for a different user.
|
|
25835
26018
|
example: 87982c96-f2fe-4b05-838c-ff42c0525758
|
|
25836
|
-
oneOf: &
|
|
26019
|
+
oneOf: &ref_600
|
|
25837
26020
|
- type: object
|
|
25838
26021
|
title: With started_at & duration
|
|
25839
26022
|
required:
|
|
@@ -25885,7 +26068,7 @@ paths:
|
|
|
25885
26068
|
allOf:
|
|
25886
26069
|
- title: timeTracking.addresponse
|
|
25887
26070
|
type: object
|
|
25888
|
-
properties: &
|
|
26071
|
+
properties: &ref_601
|
|
25889
26072
|
data:
|
|
25890
26073
|
title: TypeAndId
|
|
25891
26074
|
type: object
|
|
@@ -25911,11 +26094,11 @@ paths:
|
|
|
25911
26094
|
schema:
|
|
25912
26095
|
allOf:
|
|
25913
26096
|
- title: timeTracking.updaterequest
|
|
25914
|
-
required: &
|
|
26097
|
+
required: &ref_602
|
|
25915
26098
|
- id
|
|
25916
26099
|
- duration
|
|
25917
26100
|
type: object
|
|
25918
|
-
properties: &
|
|
26101
|
+
properties: &ref_603
|
|
25919
26102
|
id:
|
|
25920
26103
|
type: string
|
|
25921
26104
|
example: 66621f54-3d0d-420f-8d4b-ddd7fc473bf2
|
|
@@ -25953,7 +26136,7 @@ paths:
|
|
|
25953
26136
|
invoiceable:
|
|
25954
26137
|
type: boolean
|
|
25955
26138
|
example: true
|
|
25956
|
-
oneOf: &
|
|
26139
|
+
oneOf: &ref_604
|
|
25957
26140
|
- type: object
|
|
25958
26141
|
title: Update with started_at
|
|
25959
26142
|
description: Update the timetracking with `started_at` DateTime.
|
|
@@ -25996,10 +26179,10 @@ paths:
|
|
|
25996
26179
|
schema:
|
|
25997
26180
|
allOf:
|
|
25998
26181
|
- title: timeTracking.resumerequest
|
|
25999
|
-
required: &
|
|
26182
|
+
required: &ref_605
|
|
26000
26183
|
- id
|
|
26001
26184
|
type: object
|
|
26002
|
-
properties: &
|
|
26185
|
+
properties: &ref_606
|
|
26003
26186
|
id:
|
|
26004
26187
|
type: string
|
|
26005
26188
|
example: 06dfa08a-b769-4005-a912-45ab885c5737
|
|
@@ -26024,7 +26207,7 @@ paths:
|
|
|
26024
26207
|
allOf:
|
|
26025
26208
|
- title: timeTracking.resumeresponse
|
|
26026
26209
|
type: object
|
|
26027
|
-
properties: &
|
|
26210
|
+
properties: &ref_607
|
|
26028
26211
|
data:
|
|
26029
26212
|
title: TypeAndId
|
|
26030
26213
|
type: object
|
|
@@ -26053,10 +26236,10 @@ paths:
|
|
|
26053
26236
|
schema:
|
|
26054
26237
|
allOf:
|
|
26055
26238
|
- title: timeTracking.deleterequest
|
|
26056
|
-
required: &
|
|
26239
|
+
required: &ref_608
|
|
26057
26240
|
- id
|
|
26058
26241
|
type: object
|
|
26059
|
-
properties: &
|
|
26242
|
+
properties: &ref_609
|
|
26060
26243
|
id:
|
|
26061
26244
|
type: string
|
|
26062
26245
|
example: 6caeea11-aa83-4da9-9859-5b62bbf3a476
|
|
@@ -26089,7 +26272,7 @@ paths:
|
|
|
26089
26272
|
allOf:
|
|
26090
26273
|
- title: timers.currentresponse
|
|
26091
26274
|
type: object
|
|
26092
|
-
properties: &
|
|
26275
|
+
properties: &ref_610
|
|
26093
26276
|
data:
|
|
26094
26277
|
type: object
|
|
26095
26278
|
properties:
|
|
@@ -26174,7 +26357,7 @@ paths:
|
|
|
26174
26357
|
allOf:
|
|
26175
26358
|
- title: timers.startrequest
|
|
26176
26359
|
type: object
|
|
26177
|
-
properties: &
|
|
26360
|
+
properties: &ref_611
|
|
26178
26361
|
work_type_id:
|
|
26179
26362
|
type: string
|
|
26180
26363
|
example: db41328a-7a25-4e85-8fb9-830baacb7f40
|
|
@@ -26230,7 +26413,7 @@ paths:
|
|
|
26230
26413
|
allOf:
|
|
26231
26414
|
- title: timers.startresponse
|
|
26232
26415
|
type: object
|
|
26233
|
-
properties: &
|
|
26416
|
+
properties: &ref_612
|
|
26234
26417
|
data:
|
|
26235
26418
|
title: TypeAndId
|
|
26236
26419
|
type: object
|
|
@@ -26262,7 +26445,7 @@ paths:
|
|
|
26262
26445
|
allOf:
|
|
26263
26446
|
- title: timers.stopresponse
|
|
26264
26447
|
type: object
|
|
26265
|
-
properties: &
|
|
26448
|
+
properties: &ref_613
|
|
26266
26449
|
data:
|
|
26267
26450
|
title: TypeAndId
|
|
26268
26451
|
type: object
|
|
@@ -26292,7 +26475,7 @@ paths:
|
|
|
26292
26475
|
allOf:
|
|
26293
26476
|
- title: timers.updaterequest
|
|
26294
26477
|
type: object
|
|
26295
|
-
properties: &
|
|
26478
|
+
properties: &ref_614
|
|
26296
26479
|
work_type_id:
|
|
26297
26480
|
type: string
|
|
26298
26481
|
nullable: true
|
|
@@ -26366,7 +26549,7 @@ paths:
|
|
|
26366
26549
|
allOf:
|
|
26367
26550
|
- title: tickets.listrequest
|
|
26368
26551
|
type: object
|
|
26369
|
-
properties: &
|
|
26552
|
+
properties: &ref_615
|
|
26370
26553
|
filter:
|
|
26371
26554
|
type: object
|
|
26372
26555
|
properties:
|
|
@@ -26451,7 +26634,7 @@ paths:
|
|
|
26451
26634
|
allOf:
|
|
26452
26635
|
- title: tickets.listresponse
|
|
26453
26636
|
type: object
|
|
26454
|
-
properties: &
|
|
26637
|
+
properties: &ref_616
|
|
26455
26638
|
data:
|
|
26456
26639
|
type: array
|
|
26457
26640
|
items:
|
|
@@ -26586,10 +26769,10 @@ paths:
|
|
|
26586
26769
|
schema:
|
|
26587
26770
|
allOf:
|
|
26588
26771
|
- title: tickets.inforequest
|
|
26589
|
-
required: &
|
|
26772
|
+
required: &ref_617
|
|
26590
26773
|
- id
|
|
26591
26774
|
type: object
|
|
26592
|
-
properties: &
|
|
26775
|
+
properties: &ref_618
|
|
26593
26776
|
id:
|
|
26594
26777
|
type: string
|
|
26595
26778
|
example: 6fac0bf0-e803-424e-af67-76863a3d7d16
|
|
@@ -26608,7 +26791,7 @@ paths:
|
|
|
26608
26791
|
allOf:
|
|
26609
26792
|
- title: tickets.inforesponse
|
|
26610
26793
|
type: object
|
|
26611
|
-
properties: &
|
|
26794
|
+
properties: &ref_619
|
|
26612
26795
|
id:
|
|
26613
26796
|
type: string
|
|
26614
26797
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -26757,12 +26940,12 @@ paths:
|
|
|
26757
26940
|
schema:
|
|
26758
26941
|
allOf:
|
|
26759
26942
|
- title: tickets.createrequest
|
|
26760
|
-
required: &
|
|
26943
|
+
required: &ref_620
|
|
26761
26944
|
- subject
|
|
26762
26945
|
- customer
|
|
26763
26946
|
- ticket_status_id
|
|
26764
26947
|
type: object
|
|
26765
|
-
properties: &
|
|
26948
|
+
properties: &ref_621
|
|
26766
26949
|
subject:
|
|
26767
26950
|
type: string
|
|
26768
26951
|
example: My ticket subject
|
|
@@ -26876,7 +27059,7 @@ paths:
|
|
|
26876
27059
|
allOf:
|
|
26877
27060
|
- title: tickets.createresponse
|
|
26878
27061
|
type: object
|
|
26879
|
-
properties: &
|
|
27062
|
+
properties: &ref_622
|
|
26880
27063
|
data:
|
|
26881
27064
|
title: TypeAndId
|
|
26882
27065
|
type: object
|
|
@@ -26905,10 +27088,10 @@ paths:
|
|
|
26905
27088
|
schema:
|
|
26906
27089
|
allOf:
|
|
26907
27090
|
- title: tickets.updaterequest
|
|
26908
|
-
required: &
|
|
27091
|
+
required: &ref_623
|
|
26909
27092
|
- id
|
|
26910
27093
|
type: object
|
|
26911
|
-
properties: &
|
|
27094
|
+
properties: &ref_624
|
|
26912
27095
|
id:
|
|
26913
27096
|
type: string
|
|
26914
27097
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -27030,7 +27213,7 @@ paths:
|
|
|
27030
27213
|
allOf:
|
|
27031
27214
|
- title: tickets.listMessagesrequest
|
|
27032
27215
|
type: object
|
|
27033
|
-
properties: &
|
|
27216
|
+
properties: &ref_625
|
|
27034
27217
|
id:
|
|
27035
27218
|
type: string
|
|
27036
27219
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -27083,7 +27266,7 @@ paths:
|
|
|
27083
27266
|
allOf:
|
|
27084
27267
|
- title: tickets.listMessagesresponse
|
|
27085
27268
|
type: object
|
|
27086
|
-
properties: &
|
|
27269
|
+
properties: &ref_626
|
|
27087
27270
|
data:
|
|
27088
27271
|
type: array
|
|
27089
27272
|
items:
|
|
@@ -27186,7 +27369,7 @@ paths:
|
|
|
27186
27369
|
allOf:
|
|
27187
27370
|
- title: tickets.getMessagerequest
|
|
27188
27371
|
type: object
|
|
27189
|
-
properties: &
|
|
27372
|
+
properties: &ref_627
|
|
27190
27373
|
message_id:
|
|
27191
27374
|
type: string
|
|
27192
27375
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -27205,7 +27388,7 @@ paths:
|
|
|
27205
27388
|
allOf:
|
|
27206
27389
|
- title: tickets.getMessageresponse
|
|
27207
27390
|
type: object
|
|
27208
|
-
properties: &
|
|
27391
|
+
properties: &ref_628
|
|
27209
27392
|
message_id:
|
|
27210
27393
|
type: string
|
|
27211
27394
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -27288,13 +27471,13 @@ paths:
|
|
|
27288
27471
|
schema:
|
|
27289
27472
|
allOf:
|
|
27290
27473
|
- title: tickets.importMessagerequest
|
|
27291
|
-
required: &
|
|
27474
|
+
required: &ref_629
|
|
27292
27475
|
- id
|
|
27293
27476
|
- body
|
|
27294
27477
|
- sent_by
|
|
27295
27478
|
- sent_at
|
|
27296
27479
|
type: object
|
|
27297
|
-
properties: &
|
|
27480
|
+
properties: &ref_630
|
|
27298
27481
|
id:
|
|
27299
27482
|
type: string
|
|
27300
27483
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -27347,7 +27530,7 @@ paths:
|
|
|
27347
27530
|
allOf:
|
|
27348
27531
|
- title: tickets.importMessageresponse
|
|
27349
27532
|
type: object
|
|
27350
|
-
properties: &
|
|
27533
|
+
properties: &ref_631
|
|
27351
27534
|
data:
|
|
27352
27535
|
title: TypeAndId
|
|
27353
27536
|
type: object
|
|
@@ -27376,11 +27559,11 @@ paths:
|
|
|
27376
27559
|
schema:
|
|
27377
27560
|
allOf:
|
|
27378
27561
|
- title: tickets.addReplyrequest
|
|
27379
|
-
required: &
|
|
27562
|
+
required: &ref_632
|
|
27380
27563
|
- id
|
|
27381
27564
|
- body
|
|
27382
27565
|
type: object
|
|
27383
|
-
properties: &
|
|
27566
|
+
properties: &ref_633
|
|
27384
27567
|
id:
|
|
27385
27568
|
type: string
|
|
27386
27569
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -27419,7 +27602,7 @@ paths:
|
|
|
27419
27602
|
allOf:
|
|
27420
27603
|
- title: tickets.addReplyresponse
|
|
27421
27604
|
type: object
|
|
27422
|
-
properties: &
|
|
27605
|
+
properties: &ref_634
|
|
27423
27606
|
data:
|
|
27424
27607
|
title: TypeAndId
|
|
27425
27608
|
type: object
|
|
@@ -27448,11 +27631,11 @@ paths:
|
|
|
27448
27631
|
schema:
|
|
27449
27632
|
allOf:
|
|
27450
27633
|
- title: tickets.addInternalMessagerequest
|
|
27451
|
-
required: &
|
|
27634
|
+
required: &ref_635
|
|
27452
27635
|
- id
|
|
27453
27636
|
- body
|
|
27454
27637
|
type: object
|
|
27455
|
-
properties: &
|
|
27638
|
+
properties: &ref_636
|
|
27456
27639
|
id:
|
|
27457
27640
|
type: string
|
|
27458
27641
|
example: f29abf48-337d-44b4-aad4-585f5277a456
|
|
@@ -27491,7 +27674,7 @@ paths:
|
|
|
27491
27674
|
allOf:
|
|
27492
27675
|
- title: tickets.addInternalMessageresponse
|
|
27493
27676
|
type: object
|
|
27494
|
-
properties: &
|
|
27677
|
+
properties: &ref_637
|
|
27495
27678
|
data:
|
|
27496
27679
|
title: TypeAndId
|
|
27497
27680
|
type: object
|
|
@@ -27521,7 +27704,7 @@ paths:
|
|
|
27521
27704
|
allOf:
|
|
27522
27705
|
- title: ticketStatus.listrequest
|
|
27523
27706
|
type: object
|
|
27524
|
-
properties: &
|
|
27707
|
+
properties: &ref_638
|
|
27525
27708
|
filter:
|
|
27526
27709
|
type: object
|
|
27527
27710
|
properties:
|
|
@@ -27550,7 +27733,7 @@ paths:
|
|
|
27550
27733
|
allOf:
|
|
27551
27734
|
- title: ticketStatus.listresponse
|
|
27552
27735
|
type: object
|
|
27553
|
-
properties: &
|
|
27736
|
+
properties: &ref_639
|
|
27554
27737
|
data:
|
|
27555
27738
|
type: array
|
|
27556
27739
|
items:
|
|
@@ -27600,10 +27783,10 @@ paths:
|
|
|
27600
27783
|
schema:
|
|
27601
27784
|
allOf:
|
|
27602
27785
|
- title: files.listrequest
|
|
27603
|
-
required: &
|
|
27786
|
+
required: &ref_640
|
|
27604
27787
|
- filter
|
|
27605
27788
|
type: object
|
|
27606
|
-
properties: &
|
|
27789
|
+
properties: &ref_641
|
|
27607
27790
|
filter:
|
|
27608
27791
|
type: object
|
|
27609
27792
|
required:
|
|
@@ -27685,7 +27868,7 @@ paths:
|
|
|
27685
27868
|
allOf:
|
|
27686
27869
|
- title: files.listresponse
|
|
27687
27870
|
type: object
|
|
27688
|
-
properties: &
|
|
27871
|
+
properties: &ref_642
|
|
27689
27872
|
data:
|
|
27690
27873
|
type: array
|
|
27691
27874
|
items:
|
|
@@ -27805,10 +27988,10 @@ paths:
|
|
|
27805
27988
|
schema:
|
|
27806
27989
|
allOf:
|
|
27807
27990
|
- title: files.inforequest
|
|
27808
|
-
required: &
|
|
27991
|
+
required: &ref_643
|
|
27809
27992
|
- id
|
|
27810
27993
|
type: object
|
|
27811
|
-
properties: &
|
|
27994
|
+
properties: &ref_644
|
|
27812
27995
|
id:
|
|
27813
27996
|
type: string
|
|
27814
27997
|
example: 6fac0bf0-e803-424e-af67-76863a3d7d16
|
|
@@ -27827,7 +28010,7 @@ paths:
|
|
|
27827
28010
|
allOf:
|
|
27828
28011
|
- title: files.inforesponse
|
|
27829
28012
|
type: object
|
|
27830
|
-
properties: &
|
|
28013
|
+
properties: &ref_645
|
|
27831
28014
|
data:
|
|
27832
28015
|
type: object
|
|
27833
28016
|
properties:
|
|
@@ -27925,10 +28108,10 @@ paths:
|
|
|
27925
28108
|
schema:
|
|
27926
28109
|
allOf:
|
|
27927
28110
|
- title: files.downloadrequest
|
|
27928
|
-
required: &
|
|
28111
|
+
required: &ref_646
|
|
27929
28112
|
- id
|
|
27930
28113
|
type: object
|
|
27931
|
-
properties: &
|
|
28114
|
+
properties: &ref_647
|
|
27932
28115
|
id:
|
|
27933
28116
|
type: string
|
|
27934
28117
|
example: 4afb0a9c-91c6-49ed-a2e5-ce7c1e3a87fb
|
|
@@ -27947,7 +28130,7 @@ paths:
|
|
|
27947
28130
|
allOf:
|
|
27948
28131
|
- title: files.downloadresponse
|
|
27949
28132
|
type: object
|
|
27950
|
-
properties: &
|
|
28133
|
+
properties: &ref_648
|
|
27951
28134
|
data:
|
|
27952
28135
|
type: object
|
|
27953
28136
|
properties:
|
|
@@ -27983,11 +28166,11 @@ paths:
|
|
|
27983
28166
|
schema:
|
|
27984
28167
|
allOf:
|
|
27985
28168
|
- title: files.uploadrequest
|
|
27986
|
-
required: &
|
|
28169
|
+
required: &ref_649
|
|
27987
28170
|
- name
|
|
27988
28171
|
- subject
|
|
27989
28172
|
type: object
|
|
27990
|
-
properties: &
|
|
28173
|
+
properties: &ref_650
|
|
27991
28174
|
name:
|
|
27992
28175
|
type: string
|
|
27993
28176
|
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.
|
|
@@ -28039,7 +28222,7 @@ paths:
|
|
|
28039
28222
|
allOf:
|
|
28040
28223
|
- title: files.uploadresponse
|
|
28041
28224
|
type: object
|
|
28042
|
-
properties: &
|
|
28225
|
+
properties: &ref_651
|
|
28043
28226
|
data:
|
|
28044
28227
|
type: object
|
|
28045
28228
|
properties:
|
|
@@ -28075,10 +28258,10 @@ paths:
|
|
|
28075
28258
|
schema:
|
|
28076
28259
|
allOf:
|
|
28077
28260
|
- title: files.deleterequest
|
|
28078
|
-
required: &
|
|
28261
|
+
required: &ref_652
|
|
28079
28262
|
- id
|
|
28080
28263
|
type: object
|
|
28081
|
-
properties: &
|
|
28264
|
+
properties: &ref_653
|
|
28082
28265
|
id:
|
|
28083
28266
|
type: string
|
|
28084
28267
|
example: 4afb0a9c-91c6-49ed-a2e5-ce7c1e3a87fb
|
|
@@ -28108,10 +28291,10 @@ paths:
|
|
|
28108
28291
|
schema:
|
|
28109
28292
|
allOf:
|
|
28110
28293
|
- title: mailTemplates.listrequest
|
|
28111
|
-
required: &
|
|
28294
|
+
required: &ref_654
|
|
28112
28295
|
- filter
|
|
28113
28296
|
type: object
|
|
28114
|
-
properties: &
|
|
28297
|
+
properties: &ref_655
|
|
28115
28298
|
filter:
|
|
28116
28299
|
type: object
|
|
28117
28300
|
required:
|
|
@@ -28147,7 +28330,7 @@ paths:
|
|
|
28147
28330
|
allOf:
|
|
28148
28331
|
- title: mailTemplates.listresponse
|
|
28149
28332
|
type: object
|
|
28150
|
-
properties: &
|
|
28333
|
+
properties: &ref_656
|
|
28151
28334
|
data:
|
|
28152
28335
|
type: array
|
|
28153
28336
|
items:
|
|
@@ -28228,7 +28411,7 @@ paths:
|
|
|
28228
28411
|
allOf:
|
|
28229
28412
|
- title: migrate.idrequest
|
|
28230
28413
|
type: object
|
|
28231
|
-
properties: &
|
|
28414
|
+
properties: &ref_657
|
|
28232
28415
|
type:
|
|
28233
28416
|
type: string
|
|
28234
28417
|
enum:
|
|
@@ -28273,7 +28456,7 @@ paths:
|
|
|
28273
28456
|
allOf:
|
|
28274
28457
|
- title: migrate.idresponse
|
|
28275
28458
|
type: object
|
|
28276
|
-
properties: &
|
|
28459
|
+
properties: &ref_658
|
|
28277
28460
|
data:
|
|
28278
28461
|
type: object
|
|
28279
28462
|
properties:
|
|
@@ -28328,7 +28511,7 @@ paths:
|
|
|
28328
28511
|
allOf:
|
|
28329
28512
|
- title: migrate.taxRaterequest
|
|
28330
28513
|
type: object
|
|
28331
|
-
properties: &
|
|
28514
|
+
properties: &ref_659
|
|
28332
28515
|
department_id:
|
|
28333
28516
|
type: string
|
|
28334
28517
|
example: 6ad54ec6-ee2d-4500-afe6-0917c1aa7a38
|
|
@@ -28352,7 +28535,7 @@ paths:
|
|
|
28352
28535
|
allOf:
|
|
28353
28536
|
- title: migrate.taxRateresponse
|
|
28354
28537
|
type: object
|
|
28355
|
-
properties: &
|
|
28538
|
+
properties: &ref_660
|
|
28356
28539
|
data:
|
|
28357
28540
|
title: TypeAndId
|
|
28358
28541
|
type: object
|
|
@@ -28382,7 +28565,7 @@ paths:
|
|
|
28382
28565
|
allOf:
|
|
28383
28566
|
- title: migrate.activityTyperequest
|
|
28384
28567
|
type: object
|
|
28385
|
-
properties: &
|
|
28568
|
+
properties: &ref_661
|
|
28386
28569
|
type:
|
|
28387
28570
|
type: string
|
|
28388
28571
|
enum:
|
|
@@ -28405,7 +28588,7 @@ paths:
|
|
|
28405
28588
|
allOf:
|
|
28406
28589
|
- title: migrate.activityTyperesponse
|
|
28407
28590
|
type: object
|
|
28408
|
-
properties: &
|
|
28591
|
+
properties: &ref_662
|
|
28409
28592
|
data:
|
|
28410
28593
|
title: TypeAndId
|
|
28411
28594
|
type: object
|
|
@@ -28433,10 +28616,10 @@ paths:
|
|
|
28433
28616
|
application/json:
|
|
28434
28617
|
schema:
|
|
28435
28618
|
title: orders.inforequest
|
|
28436
|
-
required: &
|
|
28619
|
+
required: &ref_663
|
|
28437
28620
|
- id
|
|
28438
28621
|
type: object
|
|
28439
|
-
properties: &
|
|
28622
|
+
properties: &ref_664
|
|
28440
28623
|
id:
|
|
28441
28624
|
type: string
|
|
28442
28625
|
example: 6fac0bf0-e803-424e-af67-76863a3d7d16
|
|
@@ -28457,7 +28640,7 @@ paths:
|
|
|
28457
28640
|
allOf:
|
|
28458
28641
|
- title: orders.inforesponse
|
|
28459
28642
|
type: object
|
|
28460
|
-
properties: &
|
|
28643
|
+
properties: &ref_666
|
|
28461
28644
|
data:
|
|
28462
28645
|
type: object
|
|
28463
28646
|
properties:
|
|
@@ -28487,7 +28670,7 @@ paths:
|
|
|
28487
28670
|
items:
|
|
28488
28671
|
title: OrdersGroupedLinesResponse
|
|
28489
28672
|
type: object
|
|
28490
|
-
properties: &
|
|
28673
|
+
properties: &ref_665
|
|
28491
28674
|
section:
|
|
28492
28675
|
type: object
|
|
28493
28676
|
properties:
|
|
@@ -28671,7 +28854,7 @@ paths:
|
|
|
28671
28854
|
allOf:
|
|
28672
28855
|
- title: orders.listrequest
|
|
28673
28856
|
type: object
|
|
28674
|
-
properties: &
|
|
28857
|
+
properties: &ref_667
|
|
28675
28858
|
filter:
|
|
28676
28859
|
type: object
|
|
28677
28860
|
properties:
|
|
@@ -28705,7 +28888,7 @@ paths:
|
|
|
28705
28888
|
schema:
|
|
28706
28889
|
title: orders.listresponse
|
|
28707
28890
|
type: object
|
|
28708
|
-
properties: &
|
|
28891
|
+
properties: &ref_668
|
|
28709
28892
|
data:
|
|
28710
28893
|
type: array
|
|
28711
28894
|
items:
|
|
@@ -29002,7 +29185,7 @@ paths:
|
|
|
29002
29185
|
schema:
|
|
29003
29186
|
title: webhooks.listresponse
|
|
29004
29187
|
type: object
|
|
29005
|
-
properties: &
|
|
29188
|
+
properties: &ref_669
|
|
29006
29189
|
data:
|
|
29007
29190
|
type: array
|
|
29008
29191
|
items:
|
|
@@ -29051,11 +29234,11 @@ paths:
|
|
|
29051
29234
|
schema:
|
|
29052
29235
|
allOf:
|
|
29053
29236
|
- title: cloudPlatforms.urlrequest
|
|
29054
|
-
required: &
|
|
29237
|
+
required: &ref_670
|
|
29055
29238
|
- type
|
|
29056
29239
|
- id
|
|
29057
29240
|
type: object
|
|
29058
|
-
properties: &
|
|
29241
|
+
properties: &ref_671
|
|
29059
29242
|
type:
|
|
29060
29243
|
type: string
|
|
29061
29244
|
enum:
|
|
@@ -29082,7 +29265,7 @@ paths:
|
|
|
29082
29265
|
allOf:
|
|
29083
29266
|
- title: cloudPlatforms.urlresponse
|
|
29084
29267
|
type: object
|
|
29085
|
-
properties: &
|
|
29268
|
+
properties: &ref_672
|
|
29086
29269
|
data:
|
|
29087
29270
|
type: object
|
|
29088
29271
|
properties:
|
|
@@ -29124,7 +29307,7 @@ paths:
|
|
|
29124
29307
|
allOf:
|
|
29125
29308
|
- title: accounts.projects-v2-statusresponse
|
|
29126
29309
|
type: object
|
|
29127
|
-
properties: &
|
|
29310
|
+
properties: &ref_673
|
|
29128
29311
|
data:
|
|
29129
29312
|
type: object
|
|
29130
29313
|
properties:
|
|
@@ -30707,29 +30890,44 @@ components:
|
|
|
30707
30890
|
required: *ref_509
|
|
30708
30891
|
type: object
|
|
30709
30892
|
properties: *ref_510
|
|
30710
|
-
projects-
|
|
30711
|
-
title: projects-
|
|
30893
|
+
projects-v2_externalParties.addToProjectrequest:
|
|
30894
|
+
title: projects-v2_externalParties.addToProjectrequest
|
|
30712
30895
|
required: *ref_511
|
|
30713
30896
|
type: object
|
|
30714
30897
|
properties: *ref_512
|
|
30898
|
+
projects-v2_externalParties.updaterequest:
|
|
30899
|
+
title: projects-v2_externalParties.updaterequest
|
|
30900
|
+
required: *ref_513
|
|
30901
|
+
type: object
|
|
30902
|
+
properties: *ref_514
|
|
30903
|
+
projects-v2_externalParties.deleterequest:
|
|
30904
|
+
title: projects-v2_externalParties.deleterequest
|
|
30905
|
+
required: *ref_515
|
|
30906
|
+
type: object
|
|
30907
|
+
properties: *ref_516
|
|
30908
|
+
projects-v2_projectLines.listrequest:
|
|
30909
|
+
title: projects-v2_projectLines.listrequest
|
|
30910
|
+
required: *ref_517
|
|
30911
|
+
type: object
|
|
30912
|
+
properties: *ref_518
|
|
30715
30913
|
projects-v2_projectLines.listresponse:
|
|
30716
30914
|
title: projects-v2_projectLines.listresponse
|
|
30717
30915
|
type: object
|
|
30718
|
-
properties: *
|
|
30916
|
+
properties: *ref_519
|
|
30719
30917
|
projects-v2_projectLines.addToGrouprequest:
|
|
30720
30918
|
title: projects-v2_projectLines.addToGrouprequest
|
|
30721
|
-
required: *
|
|
30919
|
+
required: *ref_520
|
|
30722
30920
|
type: object
|
|
30723
|
-
properties: *
|
|
30921
|
+
properties: *ref_521
|
|
30724
30922
|
projects-v2_projectLines.removeFromGrouprequest:
|
|
30725
30923
|
title: projects-v2_projectLines.removeFromGrouprequest
|
|
30726
|
-
required: *
|
|
30924
|
+
required: *ref_522
|
|
30727
30925
|
type: object
|
|
30728
|
-
properties: *
|
|
30926
|
+
properties: *ref_523
|
|
30729
30927
|
projects-v2_projectGroups.listrequest:
|
|
30730
30928
|
title: projects-v2_projectGroups.listrequest
|
|
30731
30929
|
type: object
|
|
30732
|
-
properties: *
|
|
30930
|
+
properties: *ref_524
|
|
30733
30931
|
BillingStatus:
|
|
30734
30932
|
title: BillingStatus
|
|
30735
30933
|
enum: *ref_95
|
|
@@ -30738,62 +30936,62 @@ components:
|
|
|
30738
30936
|
projects-v2_projectGroups.listresponse:
|
|
30739
30937
|
title: projects-v2_projectGroups.listresponse
|
|
30740
30938
|
type: object
|
|
30741
|
-
properties: *
|
|
30939
|
+
properties: *ref_525
|
|
30742
30940
|
projects-v2_projectGroups.inforequest:
|
|
30743
30941
|
title: projects-v2_projectGroups.inforequest
|
|
30744
|
-
required: *
|
|
30942
|
+
required: *ref_526
|
|
30745
30943
|
type: object
|
|
30746
|
-
properties: *
|
|
30944
|
+
properties: *ref_527
|
|
30747
30945
|
projects-v2_projectGroups.inforesponse:
|
|
30748
30946
|
title: projects-v2_projectGroups.inforesponse
|
|
30749
30947
|
type: object
|
|
30750
|
-
properties: *
|
|
30948
|
+
properties: *ref_528
|
|
30751
30949
|
projects-v2_projectGroups.createrequest:
|
|
30752
30950
|
title: projects-v2_projectGroups.createrequest
|
|
30753
|
-
required: *
|
|
30951
|
+
required: *ref_529
|
|
30754
30952
|
type: object
|
|
30755
|
-
properties: *
|
|
30953
|
+
properties: *ref_530
|
|
30756
30954
|
projects-v2_projectGroups.createresponse:
|
|
30757
30955
|
title: projects-v2_projectGroups.createresponse
|
|
30758
30956
|
type: object
|
|
30759
|
-
properties: *
|
|
30957
|
+
properties: *ref_531
|
|
30760
30958
|
projects-v2_projectGroups.updaterequest:
|
|
30761
30959
|
title: projects-v2_projectGroups.updaterequest
|
|
30762
|
-
required: *
|
|
30960
|
+
required: *ref_532
|
|
30763
30961
|
type: object
|
|
30764
|
-
properties: *
|
|
30962
|
+
properties: *ref_533
|
|
30765
30963
|
projects-v2_projectGroups.duplicaterequest:
|
|
30766
30964
|
title: projects-v2_projectGroups.duplicaterequest
|
|
30767
|
-
required: *
|
|
30965
|
+
required: *ref_534
|
|
30768
30966
|
type: object
|
|
30769
|
-
properties: *
|
|
30967
|
+
properties: *ref_535
|
|
30770
30968
|
projects-v2_projectGroups.duplicateresponse:
|
|
30771
30969
|
title: projects-v2_projectGroups.duplicateresponse
|
|
30772
30970
|
type: object
|
|
30773
|
-
properties: *
|
|
30971
|
+
properties: *ref_536
|
|
30774
30972
|
projects-v2_projectGroups.deleterequest:
|
|
30775
30973
|
title: projects-v2_projectGroups.deleterequest
|
|
30776
|
-
required: *
|
|
30974
|
+
required: *ref_537
|
|
30777
30975
|
type: object
|
|
30778
|
-
properties: *
|
|
30976
|
+
properties: *ref_538
|
|
30779
30977
|
projects-v2_projectGroups.assignrequest:
|
|
30780
30978
|
title: projects-v2_projectGroups.assignrequest
|
|
30781
|
-
required: *
|
|
30979
|
+
required: *ref_539
|
|
30782
30980
|
type: object
|
|
30783
|
-
properties: *
|
|
30981
|
+
properties: *ref_540
|
|
30784
30982
|
projects-v2_projectGroups.unassignrequest:
|
|
30785
30983
|
title: projects-v2_projectGroups.unassignrequest
|
|
30786
|
-
required: *
|
|
30984
|
+
required: *ref_541
|
|
30787
30985
|
type: object
|
|
30788
|
-
properties: *
|
|
30986
|
+
properties: *ref_542
|
|
30789
30987
|
projects-v2_tasks.listrequest:
|
|
30790
30988
|
title: projects-v2_tasks.listrequest
|
|
30791
30989
|
type: object
|
|
30792
|
-
properties: *
|
|
30990
|
+
properties: *ref_543
|
|
30793
30991
|
projects-v2_tasks.listresponse:
|
|
30794
30992
|
title: projects-v2_tasks.listresponse
|
|
30795
30993
|
type: object
|
|
30796
|
-
properties: *
|
|
30994
|
+
properties: *ref_544
|
|
30797
30995
|
tasks.inforequest:
|
|
30798
30996
|
title: tasks.inforequest
|
|
30799
30997
|
required: *ref_98
|
|
@@ -30802,104 +31000,104 @@ components:
|
|
|
30802
31000
|
projects-v2_tasks.inforesponse:
|
|
30803
31001
|
title: projects-v2_tasks.inforesponse
|
|
30804
31002
|
type: object
|
|
30805
|
-
properties: *
|
|
31003
|
+
properties: *ref_545
|
|
30806
31004
|
projects-v2_tasks.createrequest:
|
|
30807
31005
|
title: projects-v2_tasks.createrequest
|
|
30808
|
-
required: *
|
|
31006
|
+
required: *ref_546
|
|
30809
31007
|
type: object
|
|
30810
|
-
properties: *
|
|
31008
|
+
properties: *ref_547
|
|
30811
31009
|
tasks.createresponse:
|
|
30812
31010
|
title: tasks.createresponse
|
|
30813
31011
|
type: object
|
|
30814
31012
|
properties: *ref_101
|
|
30815
31013
|
projects-v2_tasks.updaterequest:
|
|
30816
31014
|
title: projects-v2_tasks.updaterequest
|
|
30817
|
-
required: *
|
|
31015
|
+
required: *ref_548
|
|
30818
31016
|
type: object
|
|
30819
|
-
properties: *
|
|
31017
|
+
properties: *ref_549
|
|
30820
31018
|
projects-v2_tasks.duplicaterequest:
|
|
30821
31019
|
title: projects-v2_tasks.duplicaterequest
|
|
30822
|
-
required: *
|
|
31020
|
+
required: *ref_550
|
|
30823
31021
|
type: object
|
|
30824
|
-
properties: *
|
|
31022
|
+
properties: *ref_551
|
|
30825
31023
|
projects-v2_tasks.duplicateresponse:
|
|
30826
31024
|
title: projects-v2_tasks.duplicateresponse
|
|
30827
31025
|
type: object
|
|
30828
|
-
properties: *
|
|
31026
|
+
properties: *ref_552
|
|
30829
31027
|
projects-v2_tasks.deleterequest:
|
|
30830
31028
|
title: projects-v2_tasks.deleterequest
|
|
30831
|
-
required: *
|
|
31029
|
+
required: *ref_553
|
|
30832
31030
|
type: object
|
|
30833
|
-
properties: *
|
|
31031
|
+
properties: *ref_554
|
|
30834
31032
|
projects-v2_tasks.assignrequest:
|
|
30835
31033
|
title: projects-v2_tasks.assignrequest
|
|
30836
|
-
required: *
|
|
31034
|
+
required: *ref_555
|
|
30837
31035
|
type: object
|
|
30838
|
-
properties: *
|
|
31036
|
+
properties: *ref_556
|
|
30839
31037
|
projects-v2_tasks.unassignrequest:
|
|
30840
31038
|
title: projects-v2_tasks.unassignrequest
|
|
30841
|
-
required: *
|
|
31039
|
+
required: *ref_557
|
|
30842
31040
|
type: object
|
|
30843
|
-
properties: *
|
|
31041
|
+
properties: *ref_558
|
|
30844
31042
|
projects-v2_materials.listrequest:
|
|
30845
31043
|
title: projects-v2_materials.listrequest
|
|
30846
31044
|
type: object
|
|
30847
|
-
properties: *
|
|
31045
|
+
properties: *ref_559
|
|
30848
31046
|
projects-v2_materials.listresponse:
|
|
30849
31047
|
title: projects-v2_materials.listresponse
|
|
30850
31048
|
type: object
|
|
30851
|
-
properties: *
|
|
31049
|
+
properties: *ref_560
|
|
30852
31050
|
projects-v2_materials.inforequest:
|
|
30853
31051
|
title: projects-v2_materials.inforequest
|
|
30854
|
-
required: *
|
|
31052
|
+
required: *ref_561
|
|
30855
31053
|
type: object
|
|
30856
|
-
properties: *
|
|
31054
|
+
properties: *ref_562
|
|
30857
31055
|
projects-v2_materials.inforesponse:
|
|
30858
31056
|
title: projects-v2_materials.inforesponse
|
|
30859
31057
|
type: object
|
|
30860
|
-
properties: *
|
|
31058
|
+
properties: *ref_563
|
|
30861
31059
|
projects-v2_materials.createrequest:
|
|
30862
31060
|
title: projects-v2_materials.createrequest
|
|
30863
|
-
required: *
|
|
31061
|
+
required: *ref_564
|
|
30864
31062
|
type: object
|
|
30865
|
-
properties: *
|
|
31063
|
+
properties: *ref_565
|
|
30866
31064
|
projects-v2_materials.createresponse:
|
|
30867
31065
|
title: projects-v2_materials.createresponse
|
|
30868
31066
|
type: object
|
|
30869
|
-
properties: *
|
|
31067
|
+
properties: *ref_566
|
|
30870
31068
|
projects-v2_materials.updaterequest:
|
|
30871
31069
|
title: projects-v2_materials.updaterequest
|
|
30872
|
-
required: *
|
|
31070
|
+
required: *ref_567
|
|
30873
31071
|
type: object
|
|
30874
|
-
properties: *
|
|
31072
|
+
properties: *ref_568
|
|
30875
31073
|
projects-v2_materials.duplicaterequest:
|
|
30876
31074
|
title: projects-v2_materials.duplicaterequest
|
|
30877
|
-
required: *
|
|
31075
|
+
required: *ref_569
|
|
30878
31076
|
type: object
|
|
30879
|
-
properties: *
|
|
31077
|
+
properties: *ref_570
|
|
30880
31078
|
projects-v2_materials.duplicateresponse:
|
|
30881
31079
|
title: projects-v2_materials.duplicateresponse
|
|
30882
31080
|
type: object
|
|
30883
|
-
properties: *
|
|
31081
|
+
properties: *ref_571
|
|
30884
31082
|
projects-v2_materials.deleterequest:
|
|
30885
31083
|
title: projects-v2_materials.deleterequest
|
|
30886
|
-
required: *
|
|
31084
|
+
required: *ref_572
|
|
30887
31085
|
type: object
|
|
30888
|
-
properties: *
|
|
31086
|
+
properties: *ref_573
|
|
30889
31087
|
projects-v2_materials.assignrequest:
|
|
30890
31088
|
title: projects-v2_materials.assignrequest
|
|
30891
|
-
required: *
|
|
31089
|
+
required: *ref_574
|
|
30892
31090
|
type: object
|
|
30893
|
-
properties: *
|
|
31091
|
+
properties: *ref_575
|
|
30894
31092
|
projects-v2_materials.unassignrequest:
|
|
30895
31093
|
title: projects-v2_materials.unassignrequest
|
|
30896
|
-
required: *
|
|
31094
|
+
required: *ref_576
|
|
30897
31095
|
type: object
|
|
30898
|
-
properties: *
|
|
31096
|
+
properties: *ref_577
|
|
30899
31097
|
tasks.listrequest:
|
|
30900
31098
|
title: tasks.listrequest1
|
|
30901
31099
|
type: object
|
|
30902
|
-
properties: *
|
|
31100
|
+
properties: *ref_578
|
|
30903
31101
|
Priority:
|
|
30904
31102
|
title: Priority
|
|
30905
31103
|
enum: *ref_100
|
|
@@ -30907,49 +31105,49 @@ components:
|
|
|
30907
31105
|
tasks.listresponse:
|
|
30908
31106
|
title: tasks.listresponse1
|
|
30909
31107
|
type: object
|
|
30910
|
-
properties: *
|
|
31108
|
+
properties: *ref_579
|
|
30911
31109
|
tasks.inforesponse:
|
|
30912
31110
|
title: tasks.inforesponse1
|
|
30913
31111
|
type: object
|
|
30914
|
-
properties: *
|
|
31112
|
+
properties: *ref_580
|
|
30915
31113
|
tasks.createrequest:
|
|
30916
31114
|
title: tasks.createrequest1
|
|
30917
|
-
required: *
|
|
31115
|
+
required: *ref_581
|
|
30918
31116
|
type: object
|
|
30919
|
-
properties: *
|
|
31117
|
+
properties: *ref_582
|
|
30920
31118
|
tasks.updaterequest:
|
|
30921
31119
|
title: tasks.updaterequest1
|
|
30922
|
-
required: *
|
|
31120
|
+
required: *ref_583
|
|
30923
31121
|
type: object
|
|
30924
|
-
properties: *
|
|
31122
|
+
properties: *ref_584
|
|
30925
31123
|
tasks.completerequest:
|
|
30926
31124
|
title: tasks.completerequest
|
|
30927
|
-
required: *
|
|
31125
|
+
required: *ref_585
|
|
30928
31126
|
type: object
|
|
30929
|
-
properties: *
|
|
31127
|
+
properties: *ref_586
|
|
30930
31128
|
tasks.reopenrequest:
|
|
30931
31129
|
title: tasks.reopenrequest
|
|
30932
|
-
required: *
|
|
31130
|
+
required: *ref_587
|
|
30933
31131
|
type: object
|
|
30934
|
-
properties: *
|
|
31132
|
+
properties: *ref_588
|
|
30935
31133
|
tasks.deleterequest:
|
|
30936
31134
|
title: tasks.deleterequest1
|
|
30937
|
-
required: *
|
|
31135
|
+
required: *ref_589
|
|
30938
31136
|
type: object
|
|
30939
|
-
properties: *
|
|
31137
|
+
properties: *ref_590
|
|
30940
31138
|
tasks.schedulerequest:
|
|
30941
31139
|
title: tasks.schedulerequest
|
|
30942
|
-
required: *
|
|
31140
|
+
required: *ref_591
|
|
30943
31141
|
type: object
|
|
30944
|
-
properties: *
|
|
31142
|
+
properties: *ref_592
|
|
30945
31143
|
tasks.scheduleresponse:
|
|
30946
31144
|
title: tasks.scheduleresponse
|
|
30947
31145
|
type: object
|
|
30948
|
-
properties: *
|
|
31146
|
+
properties: *ref_593
|
|
30949
31147
|
timeTracking.listrequest:
|
|
30950
31148
|
title: timeTracking.listrequest
|
|
30951
31149
|
type: object
|
|
30952
|
-
properties: *
|
|
31150
|
+
properties: *ref_594
|
|
30953
31151
|
BillingInfo:
|
|
30954
31152
|
title: BillingInfo
|
|
30955
31153
|
type: object
|
|
@@ -30961,82 +31159,82 @@ components:
|
|
|
30961
31159
|
timeTracking.listresponse:
|
|
30962
31160
|
title: timeTracking.listresponse
|
|
30963
31161
|
type: object
|
|
30964
|
-
properties: *
|
|
31162
|
+
properties: *ref_595
|
|
30965
31163
|
timeTracking.inforequest:
|
|
30966
31164
|
title: timeTracking.inforequest
|
|
30967
|
-
required: *
|
|
31165
|
+
required: *ref_596
|
|
30968
31166
|
type: object
|
|
30969
|
-
properties: *
|
|
31167
|
+
properties: *ref_597
|
|
30970
31168
|
timeTracking.inforesponse:
|
|
30971
31169
|
title: timeTracking.inforesponse
|
|
30972
31170
|
type: object
|
|
30973
|
-
properties: *
|
|
31171
|
+
properties: *ref_598
|
|
30974
31172
|
timeTracking.addrequest:
|
|
30975
31173
|
title: timeTracking.addrequest
|
|
30976
31174
|
type: object
|
|
30977
|
-
properties: *
|
|
30978
|
-
oneOf: *
|
|
31175
|
+
properties: *ref_599
|
|
31176
|
+
oneOf: *ref_600
|
|
30979
31177
|
timeTracking.addresponse:
|
|
30980
31178
|
title: timeTracking.addresponse
|
|
30981
31179
|
type: object
|
|
30982
|
-
properties: *
|
|
31180
|
+
properties: *ref_601
|
|
30983
31181
|
timeTracking.updaterequest:
|
|
30984
31182
|
title: timeTracking.updaterequest
|
|
30985
|
-
required: *
|
|
31183
|
+
required: *ref_602
|
|
30986
31184
|
type: object
|
|
30987
|
-
properties: *
|
|
30988
|
-
oneOf: *
|
|
31185
|
+
properties: *ref_603
|
|
31186
|
+
oneOf: *ref_604
|
|
30989
31187
|
timeTracking.resumerequest:
|
|
30990
31188
|
title: timeTracking.resumerequest
|
|
30991
|
-
required: *
|
|
31189
|
+
required: *ref_605
|
|
30992
31190
|
type: object
|
|
30993
|
-
properties: *
|
|
31191
|
+
properties: *ref_606
|
|
30994
31192
|
timeTracking.resumeresponse:
|
|
30995
31193
|
title: timeTracking.resumeresponse
|
|
30996
31194
|
type: object
|
|
30997
|
-
properties: *
|
|
31195
|
+
properties: *ref_607
|
|
30998
31196
|
timeTracking.deleterequest:
|
|
30999
31197
|
title: timeTracking.deleterequest
|
|
31000
|
-
required: *
|
|
31198
|
+
required: *ref_608
|
|
31001
31199
|
type: object
|
|
31002
|
-
properties: *
|
|
31200
|
+
properties: *ref_609
|
|
31003
31201
|
timers.currentresponse:
|
|
31004
31202
|
title: timers.currentresponse
|
|
31005
31203
|
type: object
|
|
31006
|
-
properties: *
|
|
31204
|
+
properties: *ref_610
|
|
31007
31205
|
timers.startrequest:
|
|
31008
31206
|
title: timers.startrequest
|
|
31009
31207
|
type: object
|
|
31010
|
-
properties: *
|
|
31208
|
+
properties: *ref_611
|
|
31011
31209
|
timers.startresponse:
|
|
31012
31210
|
title: timers.startresponse
|
|
31013
31211
|
type: object
|
|
31014
|
-
properties: *
|
|
31212
|
+
properties: *ref_612
|
|
31015
31213
|
timers.stopresponse:
|
|
31016
31214
|
title: timers.stopresponse
|
|
31017
31215
|
type: object
|
|
31018
|
-
properties: *
|
|
31216
|
+
properties: *ref_613
|
|
31019
31217
|
timers.updaterequest:
|
|
31020
31218
|
title: timers.updaterequest
|
|
31021
31219
|
type: object
|
|
31022
|
-
properties: *
|
|
31220
|
+
properties: *ref_614
|
|
31023
31221
|
tickets.listrequest:
|
|
31024
31222
|
title: tickets.listrequest
|
|
31025
31223
|
type: object
|
|
31026
|
-
properties: *
|
|
31224
|
+
properties: *ref_615
|
|
31027
31225
|
tickets.listresponse:
|
|
31028
31226
|
title: tickets.listresponse
|
|
31029
31227
|
type: object
|
|
31030
|
-
properties: *
|
|
31228
|
+
properties: *ref_616
|
|
31031
31229
|
tickets.inforequest:
|
|
31032
31230
|
title: tickets.inforequest
|
|
31033
|
-
required: *
|
|
31231
|
+
required: *ref_617
|
|
31034
31232
|
type: object
|
|
31035
|
-
properties: *
|
|
31233
|
+
properties: *ref_618
|
|
31036
31234
|
tickets.inforesponse:
|
|
31037
31235
|
title: tickets.inforesponse
|
|
31038
31236
|
type: object
|
|
31039
|
-
properties: *
|
|
31237
|
+
properties: *ref_619
|
|
31040
31238
|
CompanyCustomer:
|
|
31041
31239
|
title: CompanyCustomer
|
|
31042
31240
|
required: *ref_104
|
|
@@ -31044,22 +31242,22 @@ components:
|
|
|
31044
31242
|
properties: *ref_105
|
|
31045
31243
|
tickets.createrequest:
|
|
31046
31244
|
title: tickets.createrequest
|
|
31047
|
-
required: *
|
|
31245
|
+
required: *ref_620
|
|
31048
31246
|
type: object
|
|
31049
|
-
properties: *
|
|
31247
|
+
properties: *ref_621
|
|
31050
31248
|
tickets.createresponse:
|
|
31051
31249
|
title: tickets.createresponse
|
|
31052
31250
|
type: object
|
|
31053
|
-
properties: *
|
|
31251
|
+
properties: *ref_622
|
|
31054
31252
|
tickets.updaterequest:
|
|
31055
31253
|
title: tickets.updaterequest
|
|
31056
|
-
required: *
|
|
31254
|
+
required: *ref_623
|
|
31057
31255
|
type: object
|
|
31058
|
-
properties: *
|
|
31256
|
+
properties: *ref_624
|
|
31059
31257
|
tickets.listMessagesrequest:
|
|
31060
31258
|
title: tickets.listMessagesrequest
|
|
31061
31259
|
type: object
|
|
31062
|
-
properties: *
|
|
31260
|
+
properties: *ref_625
|
|
31063
31261
|
SentBy:
|
|
31064
31262
|
title: SentBy
|
|
31065
31263
|
type: object
|
|
@@ -31067,55 +31265,55 @@ components:
|
|
|
31067
31265
|
tickets.listMessagesresponse:
|
|
31068
31266
|
title: tickets.listMessagesresponse
|
|
31069
31267
|
type: object
|
|
31070
|
-
properties: *
|
|
31268
|
+
properties: *ref_626
|
|
31071
31269
|
tickets.getMessagerequest:
|
|
31072
31270
|
title: tickets.getMessagerequest
|
|
31073
31271
|
type: object
|
|
31074
|
-
properties: *
|
|
31272
|
+
properties: *ref_627
|
|
31075
31273
|
tickets.getMessageresponse:
|
|
31076
31274
|
title: tickets.getMessageresponse
|
|
31077
31275
|
type: object
|
|
31078
|
-
properties: *
|
|
31276
|
+
properties: *ref_628
|
|
31079
31277
|
tickets.importMessagerequest:
|
|
31080
31278
|
title: tickets.importMessagerequest
|
|
31081
|
-
required: *
|
|
31279
|
+
required: *ref_629
|
|
31082
31280
|
type: object
|
|
31083
|
-
properties: *
|
|
31281
|
+
properties: *ref_630
|
|
31084
31282
|
tickets.importMessageresponse:
|
|
31085
31283
|
title: tickets.importMessageresponse
|
|
31086
31284
|
type: object
|
|
31087
|
-
properties: *
|
|
31285
|
+
properties: *ref_631
|
|
31088
31286
|
tickets.addReplyrequest:
|
|
31089
31287
|
title: tickets.addReplyrequest
|
|
31090
|
-
required: *
|
|
31288
|
+
required: *ref_632
|
|
31091
31289
|
type: object
|
|
31092
|
-
properties: *
|
|
31290
|
+
properties: *ref_633
|
|
31093
31291
|
tickets.addReplyresponse:
|
|
31094
31292
|
title: tickets.addReplyresponse
|
|
31095
31293
|
type: object
|
|
31096
|
-
properties: *
|
|
31294
|
+
properties: *ref_634
|
|
31097
31295
|
tickets.addInternalMessagerequest:
|
|
31098
31296
|
title: tickets.addInternalMessagerequest
|
|
31099
|
-
required: *
|
|
31297
|
+
required: *ref_635
|
|
31100
31298
|
type: object
|
|
31101
|
-
properties: *
|
|
31299
|
+
properties: *ref_636
|
|
31102
31300
|
tickets.addInternalMessageresponse:
|
|
31103
31301
|
title: tickets.addInternalMessageresponse
|
|
31104
31302
|
type: object
|
|
31105
|
-
properties: *
|
|
31303
|
+
properties: *ref_637
|
|
31106
31304
|
ticketStatus.listrequest:
|
|
31107
31305
|
title: ticketStatus.listrequest
|
|
31108
31306
|
type: object
|
|
31109
|
-
properties: *
|
|
31307
|
+
properties: *ref_638
|
|
31110
31308
|
ticketStatus.listresponse:
|
|
31111
31309
|
title: ticketStatus.listresponse
|
|
31112
31310
|
type: object
|
|
31113
|
-
properties: *
|
|
31311
|
+
properties: *ref_639
|
|
31114
31312
|
files.listrequest:
|
|
31115
31313
|
title: files.listrequest
|
|
31116
|
-
required: *
|
|
31314
|
+
required: *ref_640
|
|
31117
31315
|
type: object
|
|
31118
|
-
properties: *
|
|
31316
|
+
properties: *ref_641
|
|
31119
31317
|
MimeType:
|
|
31120
31318
|
title: MimeType
|
|
31121
31319
|
enum: *ref_107
|
|
@@ -31123,93 +31321,93 @@ components:
|
|
|
31123
31321
|
files.listresponse:
|
|
31124
31322
|
title: files.listresponse
|
|
31125
31323
|
type: object
|
|
31126
|
-
properties: *
|
|
31324
|
+
properties: *ref_642
|
|
31127
31325
|
files.inforequest:
|
|
31128
31326
|
title: files.inforequest
|
|
31129
|
-
required: *
|
|
31327
|
+
required: *ref_643
|
|
31130
31328
|
type: object
|
|
31131
|
-
properties: *
|
|
31329
|
+
properties: *ref_644
|
|
31132
31330
|
files.inforesponse:
|
|
31133
31331
|
title: files.inforesponse
|
|
31134
31332
|
type: object
|
|
31135
|
-
properties: *
|
|
31333
|
+
properties: *ref_645
|
|
31136
31334
|
files.downloadrequest:
|
|
31137
31335
|
title: files.downloadrequest
|
|
31138
|
-
required: *
|
|
31336
|
+
required: *ref_646
|
|
31139
31337
|
type: object
|
|
31140
|
-
properties: *
|
|
31338
|
+
properties: *ref_647
|
|
31141
31339
|
files.downloadresponse:
|
|
31142
31340
|
title: files.downloadresponse
|
|
31143
31341
|
type: object
|
|
31144
|
-
properties: *
|
|
31342
|
+
properties: *ref_648
|
|
31145
31343
|
files.uploadrequest:
|
|
31146
31344
|
title: files.uploadrequest
|
|
31147
|
-
required: *
|
|
31345
|
+
required: *ref_649
|
|
31148
31346
|
type: object
|
|
31149
|
-
properties: *
|
|
31347
|
+
properties: *ref_650
|
|
31150
31348
|
files.uploadresponse:
|
|
31151
31349
|
title: files.uploadresponse
|
|
31152
31350
|
type: object
|
|
31153
|
-
properties: *
|
|
31351
|
+
properties: *ref_651
|
|
31154
31352
|
files.deleterequest:
|
|
31155
31353
|
title: files.deleterequest
|
|
31156
|
-
required: *
|
|
31354
|
+
required: *ref_652
|
|
31157
31355
|
type: object
|
|
31158
|
-
properties: *
|
|
31356
|
+
properties: *ref_653
|
|
31159
31357
|
mailTemplates.listrequest:
|
|
31160
31358
|
title: mailTemplates.listrequest
|
|
31161
|
-
required: *
|
|
31359
|
+
required: *ref_654
|
|
31162
31360
|
type: object
|
|
31163
|
-
properties: *
|
|
31361
|
+
properties: *ref_655
|
|
31164
31362
|
mailTemplates.listresponse:
|
|
31165
31363
|
title: mailTemplates.listresponse
|
|
31166
31364
|
type: object
|
|
31167
|
-
properties: *
|
|
31365
|
+
properties: *ref_656
|
|
31168
31366
|
migrate.idrequest:
|
|
31169
31367
|
title: migrate.idrequest
|
|
31170
31368
|
type: object
|
|
31171
|
-
properties: *
|
|
31369
|
+
properties: *ref_657
|
|
31172
31370
|
migrate.idresponse:
|
|
31173
31371
|
title: migrate.idresponse
|
|
31174
31372
|
type: object
|
|
31175
|
-
properties: *
|
|
31373
|
+
properties: *ref_658
|
|
31176
31374
|
migrate.taxRaterequest:
|
|
31177
31375
|
title: migrate.taxRaterequest
|
|
31178
31376
|
type: object
|
|
31179
|
-
properties: *
|
|
31377
|
+
properties: *ref_659
|
|
31180
31378
|
migrate.taxRateresponse:
|
|
31181
31379
|
title: migrate.taxRateresponse
|
|
31182
31380
|
type: object
|
|
31183
|
-
properties: *
|
|
31381
|
+
properties: *ref_660
|
|
31184
31382
|
migrate.activityTyperequest:
|
|
31185
31383
|
title: migrate.activityTyperequest
|
|
31186
31384
|
type: object
|
|
31187
|
-
properties: *
|
|
31385
|
+
properties: *ref_661
|
|
31188
31386
|
migrate.activityTyperesponse:
|
|
31189
31387
|
title: migrate.activityTyperesponse
|
|
31190
31388
|
type: object
|
|
31191
|
-
properties: *
|
|
31389
|
+
properties: *ref_662
|
|
31192
31390
|
orders.inforequest:
|
|
31193
31391
|
title: orders.inforequest
|
|
31194
|
-
required: *
|
|
31392
|
+
required: *ref_663
|
|
31195
31393
|
type: object
|
|
31196
|
-
properties: *
|
|
31394
|
+
properties: *ref_664
|
|
31197
31395
|
OrdersGroupedLinesResponse:
|
|
31198
31396
|
title: OrdersGroupedLinesResponse
|
|
31199
31397
|
type: object
|
|
31200
|
-
properties: *
|
|
31398
|
+
properties: *ref_665
|
|
31201
31399
|
orders.inforesponse:
|
|
31202
31400
|
title: orders.inforesponse
|
|
31203
31401
|
type: object
|
|
31204
|
-
properties: *
|
|
31402
|
+
properties: *ref_666
|
|
31205
31403
|
orders.listrequest:
|
|
31206
31404
|
title: orders.listrequest
|
|
31207
31405
|
type: object
|
|
31208
|
-
properties: *
|
|
31406
|
+
properties: *ref_667
|
|
31209
31407
|
orders.listresponse:
|
|
31210
31408
|
title: orders.listresponse
|
|
31211
31409
|
type: object
|
|
31212
|
-
properties: *
|
|
31410
|
+
properties: *ref_668
|
|
31213
31411
|
WebHook:
|
|
31214
31412
|
title: WebHook
|
|
31215
31413
|
required: *ref_108
|
|
@@ -31218,20 +31416,20 @@ components:
|
|
|
31218
31416
|
webhooks.listresponse:
|
|
31219
31417
|
title: webhooks.listresponse
|
|
31220
31418
|
type: object
|
|
31221
|
-
properties: *
|
|
31419
|
+
properties: *ref_669
|
|
31222
31420
|
cloudPlatforms.urlrequest:
|
|
31223
31421
|
title: cloudPlatforms.urlrequest
|
|
31224
|
-
required: *
|
|
31422
|
+
required: *ref_670
|
|
31225
31423
|
type: object
|
|
31226
|
-
properties: *
|
|
31424
|
+
properties: *ref_671
|
|
31227
31425
|
cloudPlatforms.urlresponse:
|
|
31228
31426
|
title: cloudPlatforms.urlresponse
|
|
31229
31427
|
type: object
|
|
31230
|
-
properties: *
|
|
31428
|
+
properties: *ref_672
|
|
31231
31429
|
accounts.projects-v2-statusresponse:
|
|
31232
31430
|
title: accounts.projects-v2-statusresponse
|
|
31233
31431
|
type: object
|
|
31234
|
-
properties: *
|
|
31432
|
+
properties: *ref_673
|
|
31235
31433
|
x-tagGroups:
|
|
31236
31434
|
- name: General
|
|
31237
31435
|
tags:
|
|
@@ -31292,6 +31490,7 @@ x-tagGroups:
|
|
|
31292
31490
|
- name: New Projects
|
|
31293
31491
|
tags:
|
|
31294
31492
|
- projects
|
|
31493
|
+
- external_parties
|
|
31295
31494
|
- project_lines
|
|
31296
31495
|
- groups
|
|
31297
31496
|
- projects_v2_tasks
|