-
Notifications
You must be signed in to change notification settings - Fork 133
/
VTEX - VTEX Do API.json
1061 lines (1060 loc) · 60.8 KB
/
VTEX - VTEX Do API.json
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.0.0",
"info": {
"title": "VTEX DO API",
"description": "[VTEX DO](https://help.vtex.com/en/tutorial/vtex-do--7KMbRL4OslN8DTX9oiuCiu) is a task management system for authorized [users](https://help.vtex.com/en/tutorial/how-to-manage-users--tutorials_512) to process VTEX store orders. The functionality allows you to control notes, and create, update, list, and retrieve tasks. \r\n\r\n## VTEX DO API Index\r\n\r\n### Note\r\n\r\n- `POST` [Create Note](https:\/\/developers.vtex.com\/docs\/api-reference\/vtex-do-api#post-\/notes)\r\n- `GET` [Get Notes by orderId](https:\/\/developers.vtex.com\/docs\/api-reference\/vtex-do-api#get-\/notes)\r\n- `GET` [Retrieve Note](https:\/\/developers.vtex.com\/docs\/api-reference\/vtex-do-api#get-\/notes\/-noteId-)\r\n\r\n### Task\r\n\r\n- `POST` [Create Task](https:\/\/developers.vtex.com\/docs\/api-reference\/vtex-do-api#post-\/tasks)\r\n- `GET` [List tasks](https:\/\/developers.vtex.com\/docs\/api-reference\/vtex-do-api#get-\/tasks)\r\n- `GET` [Retrieve Task](https:\/\/developers.vtex.com\/docs\/api-reference\/vtex-do-api#get-\/tasks\/-taskId-)\r\n- `PUT` [Update Task](https:\/\/developers.vtex.com\/docs\/api-reference\/vtex-do-api#put-\/tasks\/-taskId-)\r\n- `POST` [Add Comment on a Task](https:\/\/developers.vtex.com\/docs\/api-reference\/vtex-do-api#post-\/tasks\/-taskId-\/comments) \r\n\r\n## Common parameters\r\n\r\n| **Parameter name** | **Description** | **Type** |\r\n| :---: | :--- | :--- |\r\n| `{{accountName}}` | Name of the VTEX account. Used as part of the URL. | Server variable. |\r\n| `{{environment}}` | Environment to use. Used as part of the URL. The default value is `vtexcommercestable`. | Server variable. |\r\n| `X-VTEX-API-AppKey` | Unique identifier of the [application key](https://developers.vtex.com/docs/guides/api-authentication-using-application-keys). | Authentication header. Must be used together with `X-VTEX-API-AppToken`. Not necessary when using `VtexIdclientAutCookie`. |\r\n| `X-VTEX-API-AppToken` | Secret token of the [application key](https://developers.vtex.com/docs/guides/api-authentication-using-application-keys). | Authentication header. Must be used together with X-VTEX-API-AppKey. Not necessary when using `VtexIdclientAutCookie`. |\r\n| `VtexIdclientAutCookie` | [User token](https://developers.vtex.com/docs/guides/api-authentication-using-user-tokens), valid for 24 hours. | Authentication header. Not necessary when using `X-VTEX-API-AppKey` and `X-VTEX-API-AppToken`. |",
"contact": {},
"version": "1.0"
},
"servers": [
{
"url": "https://{accountName}.{environment}.com.br/api/do",
"description": "VTEX server URL.",
"variables": {
"accountName": {
"description": "Name of the VTEX account. Used as part of the URL.",
"default": "apiexamples"
},
"environment": {
"description": "Environment to use. Used as part of the URL.",
"enum": [
"vtexcommercestable"
],
"default": "vtexcommercestable"
}
}
}
],
"paths": {
"/notes": {
"post": {
"tags": [
"Note"
],
"summary": "Create note",
"description": "Creates a new note in [VTEX DO](https://help.vtex.com/en/tutorial/vtex-do--7KMbRL4OslN8DTX9oiuCiu). Be aware of the following limitations:\r\n\n\r- The maximum number of notes for an order is 30.\r\n\n\r- The maximum number of characters in a note's description is 2000.\r\n\r\n## Permissions\r\n\r\nThis endpoint does not require [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3).",
"operationId": "NewNote",
"parameters": [
{
"$ref": "#/components/parameters/Content-Type"
},
{
"$ref": "#/components/parameters/Accept"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"required": [
"target",
"domain",
"description"
],
"properties": {
"target": {
"type": "object",
"description": "Target.",
"properties": {
"id": {
"type": "string",
"description": "Target ID.",
"example": "v964735bdev-01"
},
"type": {
"type": "string",
"description": "Target type.",
"example": "order"
},
"url": {
"type": "string",
"description": "You can choose between using the complete target URL or only `/orders/{OrderID}`.",
"example": "https://basedevmkp.environment.com/admin/checkout/#/orders/v964741bdev-01"
}
}
},
"domain": {
"type": "string",
"description": "Domain identification.",
"example": "oms"
},
"description": {
"type": "string",
"description": "Note description. Maximum number of characters: 2000.",
"example": "Order ID in the marketplace is 786-09."
},
"createdBy": {
"type": "object",
"description": "Object with information about the user that created the note.",
"properties": {
"id": {
"type": "string",
"description": "Identification code of the user that created the note.",
"example": "fb542e51-5488-4c34-8d17-ed8fcf597a94"
},
"name": {
"type": "string",
"description": "Name of the user that created the note.",
"example": "Mario Smith"
}
}
}
}
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Note ID."
},
"domain": {
"type": "string",
"description": "VTEX module `oms`."
},
"owner": {
"type": "string",
"description": "Owner ID."
},
"target": {
"type": "object",
"description": "Target object information.",
"properties": {
"id": {
"type": "string",
"description": "Order ID."
},
"type": {
"type": "string",
"description": "Target type."
},
"url": {
"type": "string",
"description": "Target URL."
}
}
},
"description": {
"type": "string",
"description": "Note description."
},
"creationDate": {
"type": "string",
"description": "Creation date in [UTC time format](https://learn.microsoft.com/en-us/rest/api/storageservices/formatting-datetime-values), as in `YYYY-MM-DDThh:mm:ssZ`."
},
"lastUpdate": {
"type": "string",
"description": "Last update date in [UTC time format](https://learn.microsoft.com/en-us/rest/api/storageservices/formatting-datetime-values), as in `YYYY-MM-DDThh:mm:ssZ`."
},
"createdBy": {
"type": "object",
"description": "Identification of the user who created the note.",
"properties": {
"id": {
"type": "string",
"description": "User ID."
},
"name": {
"type": "string",
"description": "User name."
},
"email": {
"type": "string",
"description": "User email."
},
"key": {
"type": "string",
"description": "Authentication key used.",
"nullable": true
}
},
"nullable": true
}
}
},
"example": {
"id": "A08CDB2519AC4FA49EB6099CF72C3642",
"domain": "oms",
"owner": "c97ef6c8491a439f927cf9918644329f",
"target": {
"id": "v964735bdev-01",
"type": "order",
"url": "https://basedevmkp.environment.com.br/admin/checkout/#/orders/v964741bdev-01"
},
"description": "Order ID in the marketplace is 786-09.",
"creationDate": "2024-03-11T15:49:17.8785392Z",
"lastUpdate": "2024-05-11T15:49:17.8785392Z",
"createdBy": {
"id": "fb542e51-5488-4c34-8d17-ed8fcf597a94",
"name": "Mario Smith",
"email": "[email protected]",
"key": "appkey-appvtex"
}
}
}
}
}
}
},
"get": {
"tags": [
"Note"
],
"summary": "Get notes by order ID",
"description": "Retrieves notes related to a specific order ID.\r\n\r\n## Permissions\r\n\r\nThis endpoint does not require [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3).",
"operationId": "GetNotesbyorderId",
"parameters": [
{
"name": "target.id",
"in": "query",
"description": "Order ID.",
"required": true,
"style": "form",
"explode": true,
"schema": {
"type": "string",
"example": "1172452900788-01"
}
},
{
"name": "perPage",
"in": "query",
"description": "Number of notes per page. Maximum: 30.",
"required": false,
"style": "form",
"explode": true,
"schema": {
"type": "integer",
"example": 20
}
},
{
"name": "page",
"in": "query",
"description": "Number of the page to be retrieved.",
"required": false,
"style": "form",
"explode": true,
"schema": {
"type": "integer",
"example": 3
}
},
{
"name": "reason",
"in": "query",
"description": "This parameter is relevant only for accounts using [Data Protection Plus](https://developers.vtex.com/docs/guides/data-protection-plus). When sending requests to this endpoint, accounts with the [PII data architecture](https://developers.vtex.com/docs/guides/pii-data-architecture-specifications) can use this parameter to declare the reason for requesting unmasked data. Otherwise, this endpoint will return masked PII data.",
"required": false,
"style": "form",
"schema": {
"type": "string",
"example": "data-validation"
}
},
{
"$ref": "#/components/parameters/Content-Type"
},
{
"$ref": "#/components/parameters/Accept"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {},
"example": {}
}
}
}
}
}
},
"/notes/{noteId}": {
"get": {
"tags": [
"Note"
],
"summary": "Retrieve note",
"description": "Retrieves a given note in [VTEX DO](https://help.vtex.com/en/tutorial/vtex-do--7KMbRL4OslN8DTX9oiuCiu), filtering by note ID.\r\n\r\n## Permissions\r\n\r\nThis endpoint does not require [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3).",
"operationId": "GetNote",
"parameters": [
{
"$ref": "#/components/parameters/Content-Type"
},
{
"$ref": "#/components/parameters/Accept"
},
{
"name": "noteId",
"in": "path",
"description": "Note ID.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "654321cba"
}
},
{
"name": "reason",
"in": "query",
"description": "This parameter is relevant only for accounts using [Data Protection Plus](https://developers.vtex.com/docs/guides/data-protection-plus). When sending requests to this endpoint, accounts with the [PII data architecture](https://developers.vtex.com/docs/guides/pii-data-architecture-specifications) can use this parameter to declare the reason for requesting unmasked data. Otherwise, this endpoint will return masked PII data.",
"required": false,
"style": "form",
"schema": {
"type": "string",
"example": "data-validation"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {},
"example": {}
}
}
}
}
}
},
"/tasks": {
"post": {
"tags": [
"Task"
],
"summary": "Create task",
"description": "Creates a new task in [VTEX DO](https://help.vtex.com/en/tutorial/vtex-do--7KMbRL4OslN8DTX9oiuCiu).\r\n\r\n## Permissions\r\n\r\nThis endpoint does not require [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3).",
"operationId": "NewTask",
"parameters": [
{
"$ref": "#/components/parameters/Content-Type"
},
{
"$ref": "#/components/parameters/Accept"
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"required": [
"target",
"domain",
"context",
"name",
"priority",
"surrogateKey",
"dueDate",
"assignee",
"followers"
],
"type": "object",
"properties": {
"target": {
"type": "array",
"description": "Target information for creating the task.",
"items": {
"type": "object",
"description": "Target details.",
"required": [
"id",
"type",
"url"
],
"properties": {
"id": {
"type": "string",
"description": "Order ID.",
"example": "v964735bdev-01"
},
"type": {
"type": "string",
"description": "Task type.",
"example": "order"
},
"url": {
"type": "string",
"description": "Order ID link in VTEX Admin.",
"example": "https://basedevmkp.environment.com.br/admin/checkout/#/orders/v964741bdev-01"
}
}
}
},
"domain": {
"type": "string",
"description": "Task domain in the VTEX environment.",
"example": "oms"
},
"context": {
"type": "string",
"description": "Task context.",
"example": "Marketplace"
},
"name": {
"type": "string",
"description": "Task name.",
"example": "pricing"
},
"priority": {
"type": "string",
"description": "Task level of priority.",
"example": "Critical"
},
"surrogateKey": {
"type": "string",
"description": "[Surrogate key](https://www.ibm.com/docs/en/ida/9.1?topic=keys-surrogate) unique identifier of the task.",
"example": "5052243-0",
"nullable": true
},
"description": {
"type": "string",
"description": "Additional task comment.",
"example": "This task is important"
},
"dueDate": {
"type": "string",
"description": "Task deadline in `hh:mm:ss` format.",
"example": "2024-05-01"
},
"assignee": {
"required": [
"email"
],
"type": "object",
"description": "Assignee to whom the task will be designated.",
"properties": {
"id": {
"type": "string",
"description": "Task assignee ID.",
"example": null,
"nullable": true
},
"name": {
"type": "string",
"description": "Task assignee name.",
"example": "Blake Smith",
"nullable": true
},
"email": {
"type": "string",
"description": "Task assignee email.",
"example": "[email protected]"
}
}
},
"followers": {
"type": "array",
"description": "Task follower array.",
"items": {
"required": [
"email"
],
"type": "object",
"description": "Person designated to be the task follower.",
"properties": {
"id": {
"type": "string",
"description": "ID of the user designated to be the task follower.",
"example": null,
"nullable": true
},
"name": {
"type": "string",
"description": "Name of the user designated to be the task follower.",
"example": "Celaena Sardothien",
"nullable": true
},
"email": {
"type": "string",
"description": "Email of the user designated to be the task follower.",
"example": "[email protected]"
}
}
}
},
"parentTaskId": {
"type": "string",
"description": "Parent task ID of another task related the task being created, when applicable.",
"example": null,
"nullable": true
}
}
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {},
"example": {}
}
}
}
}
},
"get": {
"tags": ["Task"],
"summary": "List tasks",
"description": "This endpoint allows you to filter [VTEX DO](https://help.vtex.com/en/tutorial/vtex-do--7KMbRL4OslN8DTX9oiuCiu) tasks. You can choose between the following filtering options:\r\n\r\n- **Assignees:** using `assignee.email` and `status`. Example: `https://{{accountName}}.{{environment}}.com.br/api/do/tasks?assignee.email={{[email protected]}}&status={{open}}`. \r\n\r\n- **Targets:** using `targetId` and `status`. Example: `https://{{accountName}}.{{environment}}.com.br/api/do/tasks?target.id={{name}}&status={{open}}`. \r\n\r\n- **Paged tasks:** using `page`, `perPage` and `status`. Example: `https://{{accountName}}.{{environment}}.com.br/api/do/tasks?page={{1}}&perPage={{10}}&status=;{{-Closed}}`. \r\n\r\n- **Context:** using `context`, `page`, `perPage` and `status`. Example: `https://{{accountName}}.{{environment}}.com.br/api/do/tasks?context={{context}}&page={{1}}&perPage={{10}}&status={{-Closed}}`.\r\n\r\n## Permissions\r\n\r\nThis endpoint does not require [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3).",
"operationId": "Listtasksbyassignee",
"parameters": [
{
"name": "assignee.email",
"in": "query",
"description": "If you wish to list tasks by assignee, insert the desired assignee's email and status.",
"required": false,
"style": "form",
"explode": true,
"schema": {
"type": "string",
"example": "[email protected]"
}
},
{
"name": "target.id",
"in": "query",
"description": "If you wish to list tasks by target, insert the desired `targetId` and `status`.",
"required": false,
"style": "form",
"explode": true,
"schema": {
"type": "string",
"example": "{{targetId}}"
}
},
{
"name": "context",
"in": "query",
"description": "If you wish to list tasks by context, insert the desired context, `page`, `perPage` and `status`.",
"required": false,
"style": "form",
"explode": true,
"schema": {
"type": "string",
"example": "page"
}
},
{
"name": "page",
"in": "query",
"description": "If you wish to list tasks by context, also insert the desired `page`.",
"required": false,
"style": "form",
"explode": true,
"schema": {
"type": "string",
"example": "{{page}}"
}
},
{
"name": "perPage",
"in": "query",
"description": "If you wish to list tasks by context, also insert the desired `perPage` value.",
"required": false,
"style": "form",
"explode": true,
"schema": {
"type": "string",
"example": "{{desired number per page}}"
}
},
{
"name": "status",
"in": "query",
"description": "If you wish to list tasks by context, also insert the desired `status`.",
"required": false,
"style": "form",
"explode": true,
"schema": {
"type": "string",
"example": "open"
}
},
{
"$ref": "#/components/parameters/Content-Type"
},
{
"$ref": "#/components/parameters/Accept"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"piiHidden": {
"type": "boolean",
"description": "If the VTEX account uses [PII data architecture](https://developers.vtex.com/docs/guides/pii-data-architecture-specifications) (`true`), or not (`false`)."
},
"items": {
"type": "array",
"description": "Task items array.",
"items": {
"type": "object",
"description": "Task item object.",
"properties": {
"comments": {
"type": "array",
"description": "Task item comments list.",
"items": {
"type": "string",
"description": "Task item comment."
},
"nullable": true
},
"id": {
"type": "string",
"description": "Task item ID.",
"nullable": true
},
"surrogateKey": {
"type": "string",
"description": "[Surrogate key](https://www.ibm.com/docs/en/ida/9.1?topic=keys-surrogate) unique identifier of the task item."
},
"domain": {
"type": "string",
"description": "Task item domain in the VTEX environment."
},
"target": {
"type": "array",
"description": "Task item target array.",
"items": {
"type": "object",
"description": "Task item target details.",
"properties": {
"id": {
"type": "string",
"description": "Task item target ID."
},
"type": {
"type": "string",
"description": "Task item target type."
},
"url": {
"type": "string",
"description": "Task item target URL."
}
}
}
},
"name": {
"type": "string",
"description": "Task item name."
},
"translateMapping": {
"type": "object",
"description": "Task item translate mapping.",
"properties": {
"ar": {
"type": "string",
"description": "Task item Arabic translation."
},
"bg": {
"type": "string",
"description": "Task item Bulgarian translation."
},
"en": {
"type": "string",
"description": "Task item English translation."
},
"es": {
"type": "string",
"description": "Task item Spanish translation."
},
"fr": {
"type": "string",
"description": "Task item French translation."
},
"it": {
"type": "string",
"description": "Task item Italian translation."
},
"ja": {
"type": "string",
"description": "Task item Japanese translation."
},
"ko": {
"type": "string",
"description": "Task item Korean translation."
},
"nl": {
"type": "string",
"description": "Task item Dutch translation."
},
"pt": {
"type": "string",
"description": "Task item Portuguese translation."
},
"ro": {
"type": "string",
"description": "Task item Romanian translation."
},
"th": {
"type": "string",
"description": "Task item Thai translation."
}
}
},
"context": {
"type": "string",
"description": "Task item context."
},
"priority": {
"type": "string",
"description": "Task item level of priority."
},
"status": {
"type": "string",
"description": "Task item status."
},
"creationDate": {
"type": "string",
"description": "Task item creation date and time in in [ISO 8601 time zone offset format](https://learn.microsoft.com/en-us/rest/api/storageservices/formatting-datetime-values), as in `YYYY-MM-DD hh:mm:ss[.nnnnnnn]Z`."
},
"assignee": {
"type": "object",
"description": "Task item assignee.",
"nullable": true,
"properties": {
"id": {
"type": "string",
"description": "Task item assignee ID.",
"nullable": true
},
"name": {
"type": "string",
"description": "Task item assignee name."
},
"email": {
"type": "string",
"description": "Task item assignee email."
},
"key": {
"type": "string",
"description": "Task item assignee key.",
"nullable": true
}
}
}
}
}
},
"paging": {
"type": "object",
"description": "Object with information about pagination.",
"properties": {
"page": {
"type": "integer",
"description": "Task item page number."
},
"perPage": {
"type": "integer",
"description": "Task items per page."
},
"total": {
"type": "integer",
"description": "Total task items."
},
"pages": {
"type": "integer",
"description": "Total task pages."
}
}
}
}
},
"example": {
"piiHidden": false,
"items": [
{
"comments": [],
"id": "E599F4EC87084366BDB40DD4EC6F1626",
"surrogateKey": "AV-1457-0",
"domain": "gtw",
"target": [
{
"id": "AV-1457-0",
"type": "payment",
"url": "/admin/pci-gateway#/transactions/B87AEE1124CA48C99B47F88142F95F04"
}
],
"name": "gtw.cancelManualPayment",
"translateMapping": {
"ar": "مراجعة الدفع قصد للإلغاء",
"bg": "Разгледайте плащането за отказ",
"en": "Review payment to cancel",
"es": "Revisar pago para cancelar",
"fr": "Revoir le paiement pour l'annuler",
"it": "Rivedi il pagamento per annullarlo",
"ja": "キャンセルする支払いをレビュー",
"ko": "취소하려면 지불 검토",
"nl": "Betaling herzien om te annuleren",
"pt": "Revisar pagamento para cancelar",
"ro": "Revizuiește plata pentru a o anula",
"th": "ทบทวนการชำระเงินที่จะยกเลิก"
},
"context": "Marketplace",
"priority": "Normal",
"status": "Open",
"creationDate": "2024-04-17T15:51:08.6980189",
"assignee": {
"id": null,
"name": "Blake Smith",
"email": "[email protected]",
"key": null
}
}
],
"paging": {
"page": 1,
"perPage": 10,
"total": 840,
"pages": 84
}
}
}
}
}
}
}
},
"/tasks/{taskId}": {
"get": {
"tags": ["Task"],
"summary": "Retrieve task",
"description": "Retrieves a given [VTEX DO](https://help.vtex.com/en/tutorial/vtex-do--7KMbRL4OslN8DTX9oiuCiu) task, filtering by task ID.\r\n\r\n## Permissions\r\n\r\nThis endpoint does not require [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3).",
"operationId": "GetTask",
"parameters": [
{
"$ref": "#/components/parameters/Content-Type"
},
{
"$ref": "#/components/parameters/Accept"
},
{
"name": "taskId",
"in": "path",
"description": "Task ID.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "123456abc"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {},
"example": {}
}
}
}
}
},
"put": {
"tags": ["Task"],
"summary": "Update task",
"description": "Updates the status of a [VTEX DO](https://help.vtex.com/en/tutorial/vtex-do--7KMbRL4OslN8DTX9oiuCiu) task, filtering by task ID.\r\n\r\n## Permissions\r\n\r\nThis endpoint does not require [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3).",
"operationId": "EditTask",
"parameters": [
{
"$ref": "#/components/parameters/Content-Type"
},
{
"$ref": "#/components/parameters/Accept"
},
{
"name": "taskId",
"in": "path",
"description": "Task ID.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "123456abc"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"description": "Task status to be updated.",
"required": [
"status"
],
"properties": {
"status": {
"type": "string",
"description": "Task status update.",
"example": "InProgress"
}
}
},
"example": {
"status": "InProgress"
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {},
"example": {}
}
}
}
}
}
},
"/tasks/{taskId}/comments": {
"post": {
"tags": ["Task"],
"summary": "Add comment on a task",
"description": "Adds a comment to a [VTEX DO](https://help.vtex.com/en/tutorial/vtex-do--7KMbRL4OslN8DTX9oiuCiu) task, filtering by task ID.\r\n\r\n## Permissions\r\n\r\nThis endpoint does not require [License Manager resources](https://help.vtex.com/en/tutorial/license-manager-resources--3q6ztrC8YynQf6rdc6euk3).",
"operationId": "AddComment",
"parameters": [
{
"$ref": "#/components/parameters/Content-Type"
},
{
"$ref": "#/components/parameters/Accept"
},
{
"name": "taskId",
"in": "path",
"description": "Task ID.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "123456abc"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"description": "Text to be added to the task.",
"required": [
"text"
],
"properties": {
"text": {
"type": "string",
"description": "Text you wish to add to the task.",
"example": "write your comment here"
}
}
}
}
}
},
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {},
"example": {}
}
}
}
}
}
}
},
"security": [
{
"appKey": [],