-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodoist.yaml
1801 lines (1742 loc) · 58.4 KB
/
todoist.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: Todoist_REST_V2
summary: Todoist for ChatGPT
description: Todoist REST API v2 for ChatGPT Actions
termsOfService: https://doist.com/terms-of-service
contact:
name: Todoist Developer
url: https://developer.todoist.com/
version: 1.1.0
x-definition-date: 2023-11-16
x-definition-author: aaddrick
x-definition-author-reddit: u/aaddrick
x-definition-site: https://github.com/aaddrick/GPT-Actions/blob/main/Todoist/REST/V2/README.md
servers:
- url: https://api.todoist.com/rest/v2
description: Todoist REST API v2 server URL
paths:
/projects:
get:
summary: Get all projects
description: |
Returns JSON-encoded array containing all user projects.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/?shell#get-all-projects
operationId: getAllProjects
tags:
- Projects
security:
- api_key: []
responses:
'200':
description: An array of all projects.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Project'
example:
summary: Example response
value:
id: 220474322
name: Inbox
comment_count: 10
order: 0
color: grey
is_shared: false
is_favorite: false
is_inbox_project: true
is_team_inbox: false
view_style: list
url: https://todoist.com/showProject?id=220474322
parent_id: null
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
post:
summary: Create a new project
x-speakeasy-entity-operation: Project#create
description: |
Creates a new project and returns it as a JSON object.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#create-a-new-project
operationId: createProject
tags:
- Projects
security:
- api_key: []
parameters:
- in: query
name: name
schema:
type: string
required: true
description: Name of the project
- in: query
name: parent_id
schema:
type: string
required: false
description: Parent project ID
- in: query
name: color
schema:
type: string
required: false
description: The color of the project icon. Refer to the name column in the Colors guide for more info. https://developer.todoist.com/guides/#colors
- in: query
name: is_favorite
schema:
type: boolean
required: false
description: Whether the project is a favorite (a true or false value).
- in: query
name: view_style
schema:
type: string
required: false
description: A string value (either list or board, default is list). This determines the way the project is displayed within the Todoist clients.
responses:
'200':
description: Project created.
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
example:
summary: Example response
value:
id: 2203306141
name: Shopping List
comment_count: 0
color: charcoal
is_shared: false
order: 1
is_favorite: true
is_inbox_project: true
is_team_inbox: false
view_style: list
url: https://todoist.com/showProject?id=2203306141
parent_id: null
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
/projects/{projectId}:
get:
summary: Get a project
x-speakeasy-entity-operation: Project#read
description: |
Returns a JSON object containing a project object related to the given ID.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/?shell#get-a-project
operationId: getProject
tags:
- Projects
security:
- api_key: []
parameters:
- in: path
name: projectId
x-speakeasy-match: id
schema:
type: string
required: true
description: Project ID.
responses:
'200':
description: Requested project returned.
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
example:
summary: Example response
value:
id: 2203306141
name: Shopping List
comment_count: 0
color: charcoal
is_shared: false
order: 1
is_favorite: true
is_inbox_project: true
is_team_inbox: false
view_style: list
url: https://todoist.com/showProject?id=2203306141
parent_id: null
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
post:
summary: Update a project
x-speakeasy-entity-operation: Project#update
description: |
Returns a JSON object containing the updated project object.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/?shell#update-a-project
operationId: updateProject
tags:
- Projects
security:
- api_key: []
parameters:
- in: path
name: projectId
x-speakeasy-match: id
schema:
type: string
required: true
description: Project ID.
- in: query
name: name
schema:
type: string
required: false
description: Name of the project
- in: query
name: color
schema:
type: string
required: false
description: The color of the project icon. Refer to the name column in the Colors guide for more info. https://developer.todoist.com/guides/#colors
- in: query
name: is_favorite
schema:
type: boolean
required: false
description: Whether the project is a favorite (a true or false value).
- in: query
name: view_style
schema:
type: string
required: false
description: A string value (either list or board, default is list). This determines the way the project is displayed within the Todoist clients.
responses:
'200':
description: Project updated.
content:
application/json:
schema:
$ref: '#/components/schemas/Project'
example:
summary: Example response
value:
id: 2203306141
name: Things to buy
comment_count: 0
color: charcoal
is_shared: false
order: 1
is_favorite: true
is_inbox_project: true
is_team_inbox: false
view_style: list
url: https://todoist.com/showProject?id=2203306141
parent_id: null
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
delete:
summary: Delete a project
x-speakeasy-entity-operation: Project#delete
description: |
Deletes a project.
A successful response has 204 No Content status and an empty body.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/?shell#delete-a-project
operationId: deleteProject
tags:
- Projects
security:
- api_key: []
parameters:
- in: path
name: projectId
x-speakeasy-match: id
schema:
type: string
required: true
description: Project ID.
responses:
'204':
description: Project deleted.
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
/projects/{projectId}/collaborators:
get:
summary: Get all project collaborators
description: |
Returns JSON-encoded array containing all collaborators of a shared project.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/?shell#get-all-collaborators
operationId: getAllCollaborators
tags:
- Projects
security:
- api_key: []
parameters:
- in: path
name: projectId
schema:
type: string
required: true
description: Project ID.
responses:
'200':
description: A list of collaborators.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Collaborator'
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
/sections:
get:
summary: Get all sections
description: |
Returns a JSON array of all sections.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#get-all-sections
operationId: getAllSections
tags:
- Sections
security:
- api_key: []
parameters:
- in: query
name: project_id
schema:
type: string
required: false
description: Project ID.
responses:
'200':
description: An array of all sections.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Section'
example:
summary: Example response
value:
id: 7025
project_id: 2203306141
order: 1
name: Groceries
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
post:
summary: Create a new section
description: |
Creates a new section and returns it as a JSON object.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#create-a-new-section
operationId: createSection
tags:
- Sections
security:
- api_key: []
parameters:
- in: query
name: project_id
schema:
type: string
required: true
description: Project ID this section should belong to
- in: query
name: name
schema:
type: string
required: true
description: Section name
- in: query
name: order
schema:
type: integer
required: false
description: Order among other sections in a project
responses:
'200':
description: Section created.
content:
application/json:
schema:
$ref: '#/components/schemas/Section'
example:
summary: Example response
value:
id: 7025
project_id: 2203306141
order: 1
name: Groceries
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
/sections/{sectionId}:
get:
summary: Get single section
description: |
Returns a single section as a JSON object.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#get-a-single-section
operationId: getSingleSection
tags:
- Sections
security:
- api_key: []
parameters:
- in: path
name: sectionId
schema:
type: string
required: true
description: Section ID.
responses:
'200':
description: Section retrieved.
content:
application/json:
schema:
$ref: '#/components/schemas/Section'
example:
summary: Example response
value:
id: 7025
project_id: 2203306141
order: 1
name: Groceries
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
post:
summary: Update a section name
description: |
Returns the updated section as a JSON object.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#update-a-section
operationId: updateSection
tags:
- Sections
security:
- api_key: []
parameters:
- in: path
name: sectionId
schema:
type: string
required: true
description: Section ID.
- in: query
name: name
schema:
type: string
required: true
description: Section name.
responses:
'200':
description: Section name updated.
content:
application/json:
schema:
$ref: '#/components/schemas/Section'
example:
summary: Example response
value:
id: 7025
project_id: 2203306141
order: 1
name: Supermarket
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
delete:
summary: Delete a section
description: |
Deletes a section.
A successful response has 204 No Content status and an empty body.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#delete-a-section
operationId: deleteSection
tags:
- Sections
security:
- api_key: []
parameters:
- in: path
name: sectionId
schema:
type: string
required: true
description: Section ID.
responses:
'204':
description: Section deleted.
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
/tasks:
get:
summary: Get active tasks
description: |
Returns a JSON-encoded array containing all active tasks.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#get-active-tasks
operationId: getActiveTasks
tags:
- Tasks
security:
- api_key: []
parameters:
- in: query
name: project_id
schema:
type: string
required: false
description: Filter tasks by project ID.
- in: query
name: section_id
schema:
type: string
required: false
description: Filter tasks by section ID.
- in: query
name: label
schema:
type: string
required: false
description: Filter tasks by label name.
- in: query
name: filter
schema:
type: string
required: false
description: Filter by any supported filter.
- in: query
name: lang
schema:
type: string
required: false
description: IETF language tag defining what language the filter is written in, if it differs from the default English.
- in: query
name: ids
schema:
type: array
items:
type: integer
required: false
description: A list of the task IDs to retrieve, this should be a comma-separated list.
responses:
'200':
description: List of active tasks.
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/Task'
example:
summary: Example response
value:
- creator_id: "2671355"
created_at: "2019-12-11T22:36:50.000000Z"
assignee_id: "2671362"
assigner_id: "2671355"
comment_count: 10
is_completed: false
content: "Buy Milk"
description: ""
due:
date: "2016-09-01"
is_recurring: false
datetime: "2016-09-01T12:00:00.000000Z"
string: "tomorrow at 12"
timezone: "Europe/Moscow"
duration: null
id: "2995104339"
labels: ["Food", "Shopping"]
order: 1
priority: 1
project_id: "2203306141"
section_id: "7025"
parent_id: "2995104589"
url: "https://todoist.com/showTask?id=2995104339"
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
post:
x-speakeasy-entity-operation: Task#create
summary: Create a new task
description: |
Creates a new task and returns it as a JSON object.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#create-a-new-task
operationId: createTask
tags:
- Tasks
security:
- api_key: []
requestBody:
required: true
content:
application/json:
schema:
type: object
x-speakeasy-entity: Task
properties:
content:
type: string
description: Task content. This value may contain markdown-formatted text and hyperlinks.
description:
type: string
description: A description for the task. This value may contain markdown-formatted text and hyperlinks.
project_id:
type: string
description: Task project ID. If not set, the task is put in the user's Inbox.
section_id:
type: string
description: ID of the section to put the task into.
parent_id:
type: string
description: Parent task ID.
order:
type: integer
description: Non-zero integer value used by clients to sort tasks under the same parent.
labels:
type: array
items:
type: string
description: The task's labels (a list of names that may represent either personal or shared labels).
priority:
type: integer
description: Task priority from 1 (normal) to 4 (urgent).
due_string:
type: string
description: Human-defined task due date (ex. "next Monday," "Tomorrow"). Value is set using local (not UTC) time.
due_date:
type: string
description: Specific date in YYYY-MM-DD format relative to the user's timezone.
due_datetime:
type: string
description: Specific date and time in RFC3339 format in UTC.
due_lang:
type: string
description: 2-letter code specifying the language in case due_string is not written in English.
assignee_id:
type: string
description: The responsible user ID (only applies to shared tasks).
duration:
type: integer
x-speakeasy-name-override: duration_amount
description: A positive (greater than zero) integer for the amount of duration_unit the task will take. If specified, you must define a duration_unit.
duration_unit:
type: string
description: The unit of time that the duration field above represents. Must be either minute or day. If specified, duration must be defined as well.
example:
content: "Buy Milk"
description: "Milk to be bought from local store"
project_id: "2203306141"
labels: ["Shopping", "Urgent"]
priority: 4
due_string: "tomorrow at 12"
responses:
'200':
description: Task created.
content:
application/json:
schema:
$ref: '#/components/schemas/Task'
example:
creator_id: "2671355"
created_at: "2019-12-11T22:36:50.000000Z"
assignee_id: null
assigner_id: null
comment_count: 0
is_completed: false
content: "Buy Milk"
description: ""
due:
date: "2016-09-01"
is_recurring: false
datetime: "2016-09-01T12:00:00.000000Z"
string: "tomorrow at 12"
timezone: "Europe/Moscow"
duration: null
id: "2995104339"
labels: []
order: 1
priority: 4
project_id: "2203306141"
section_id: null
parent_id: null
url: "https://todoist.com/showTask?id=2995104339"
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
/tasks/{taskId}:
get:
summary: Get an active task
x-speakeasy-entity-operation: Task#read
description: |
Returns a single active (non-completed) task by ID as a JSON object.
A successful response has 200 OK status and application/json Content-Type.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#get-an-active-task
operationId: getActiveTask
tags:
- Tasks
security:
- api_key: []
parameters:
- in: path
name: taskId
x-speakeasy-match: id
schema:
type: string
required: true
description: The ID of the task to retrieve.
responses:
'200':
description: Task details.
content:
application/json:
schema:
$ref: '#/components/schemas/Task'
example:
summary: Example response
value:
creator_id: "2671355"
created_at: "2019-12-11T22:36:50.000000Z"
assignee_id: "2671362"
assigner_id: "2671355"
comment_count: 10
is_completed: false
content: "Buy Milk"
description: ""
due:
date: "2016-09-01"
is_recurring: false
datetime: "2016-09-01T12:00:00.000000Z"
string: "tomorrow at 12"
timezone: "Europe/Moscow"
duration: null
id: "2995104339"
labels: ["Food", "Shopping"]
order: 1
priority: 1
project_id: "2203306141"
section_id: "7025"
parent_id: "2995104589"
url: "https://todoist.com/showTask?id=2995104339"
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
post:
x-speakeasy-entity-operation: Task#update
summary: Update a task
description: |
Updates a specified task and returns it as a JSON object.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#update-a-task
operationId: updateTask
tags:
- Tasks
security:
- api_key: []
parameters:
- in: path
name: taskId
required: true
x-speakeasy-match: id
description: The ID of the task to update.
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
content:
type: string
description: Task content. This value may contain markdown-formatted text and hyperlinks.
description:
type: string
description: A description for the task. This value may contain markdown-formatted text and hyperlinks.
labels:
type: array
items:
type: string
description: The task's labels (a list of names that may represent either personal or shared labels).
priority:
type: integer
description: Task priority from 1 (normal) to 4 (urgent).
due_string:
type: string
description: Human-defined task due date (ex. "next Monday," "Tomorrow"). Value is set using local (not UTC) time.
due_date:
type: string
description: Specific date in YYYY-MM-DD format relative to the user's timezone.
due_datetime:
type: string
description: Specific date and time in RFC3339 format in UTC.
due_lang:
type: string
description: 2-letter code specifying the language in case due_string is not written in English.
assignee_id:
type: string
description: The responsible user ID or null to unset (for shared tasks).
duration:
type: integer
x-speakeasy-name-override: duration_amount
description: A positive integer for the task duration, or null to unset. If specified, you must define a duration_unit.
duration_unit:
type: string
description: The unit of time for the duration. Must be either 'minute' or 'day'.
example:
content: "Buy Coffee"
description: "Coffee needed for the office"
labels: ["Office", "Urgent"]
priority: 2
due_string: "tomorrow at 9 AM"
responses:
'200':
description: Task updated.
content:
application/json:
schema:
$ref: '#/components/schemas/Task'
example:
creator_id: "2671355"
created_at: "2019-12-11T22:36:50.000000Z"
assignee_id: "2671362"
assigner_id: "2671355"
comment_count: 10
is_completed: false
content: "Buy Coffee"
description: ""
due:
date: "2016-09-01"
is_recurring: false
datetime: "2016-09-01T12:00:00.000000Z"
string: "tomorrow at 12"
timezone: "Europe/Moscow"
duration: null
id: "2995104339"
labels: ["Food", "Shopping"]
order: 1
priority: 1
project_id: "2203306141"
section_id: "7025"
parent_id: "2995104589"
url: "https://todoist.com/showTask?id=2995104339"
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
delete:
summary: Delete a task
x-speakeasy-entity-operation: Task#delete
description: |
Deletes a task.
A successful response has 204 No Content status and an empty body.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#delete-a-task
operationId: deleteTask
tags:
- Tasks
security:
- api_key: []
parameters:
- in: path
name: taskId
x-speakeasy-match: id
schema:
type: string
required: true
description: The ID of the task to delete.
responses:
'204':
description: Task successfully deleted. The response is empty.
default:
description: Unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorModel'
/tasks/{taskId}/close:
post:
summary: Close a task
description: |
Closes a task. Regular tasks are marked complete and moved to history, along with their subtasks. Tasks with recurring due dates will be scheduled to their next occurrence.
A successful response has 204 No Content status and an empty body.
externalDocs:
description: Documentation at link below
url: https://developer.todoist.com/rest/v2/#close-a-task
operationId: closeTask
tags:
- Tasks
security:
- api_key: []
parameters:
- in: path
name: taskId
schema:
type: integer
required: true
description: The ID of the task to close.
responses: