forked from vtex/openapi-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
VTEX - Marketplace Protocol.json
6084 lines (6078 loc) · 370 KB
/
VTEX - Marketplace Protocol.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": "Marketplace Protocol",
"description": "The _Marketplace Protocol_ is a set of API requests and definitions to help you integrate external sellers into a VTEX marketplace as well as external marketplaces into VTEX sellers.",
"contact": {},
"version": "1.0"
},
"servers": [
{
"url": "/",
"description": ""
}
],
"paths": {
"/{fulfillmentEndpoint}/pvt/orderForms/simulation": {
"post": {
"tags": [
"External Seller"
],
"summary": "Fulfillment simulation - External Seller",
"description": "This endpoint may be called upon by VTEX for fulfillment simulation in the external seller different contexts. See examples below.\n\nWhen a [Notification request](https://developers.vtex.com/vtex-rest-api/reference/notification) returns a response with status `200 OK`, it means that the SKU already exists in the marketplace. Whenever this happens, the marketplace will call the seller to get two updated information about the SKU: Price and Inventory.\n\nThe seller needs to have an endpoint implemented in order to receive this call and send a response containing the requested information to the marketplace. We call it the Fulfillment Simulation endpoint.\n\nIf the seller wishes to include other parameters in this call (like account name, or [sales channel](https://help.vtex.com/en/tutorial/como-funciona-uma-politica-comercial--6Xef8PZiFm40kg2STrMkMV) ID), this should be done within their {fulfillmentEndpoint}. This path is then inserted in the marketplace's VTEX admin when [configuring a seller](https://help.vtex.com/en/tutorial/configurando-seller--tutorials_392). \n\nThe marketplace will send an object containing an array of items. The seller must use this list to get the updated information about the referred SKUs and send them back to the marketplace, following the response format explained in the API Reference. \n\nThis call is also applied in the Storefront simulation scenario, in which case the request from VTEX does not send the paramenters `country` and `postalCode`.",
"operationId": "fulfillment-simulation",
"parameters": [
{
"name": "fulfillmentEndpoint",
"in": "path",
"description": "This is the fulfillment endpoint registered for each specific external seller in the **seller management** section of VTEX's admin panel.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "marketplaceexample.externalseller.com"
}
},
{
"name": "Accept",
"in": "header",
"description": "HTTP Client Negotiation _Accept_ Header. Indicates the types of responses the client can understand.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
},
{
"name": "Content-Type",
"in": "header",
"description": "Describes the type of the content being sent.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
}
],
"requestBody": {
"description": "",
"content": {
"application/json": {
"schema": {
"required": [
"postalCode"
],
"type": "object",
"properties": {
"postalCode": {
"type": "string",
"description": "Delivery address postal code. This field is mandatory for shopping carts simulations, where both Country and Postal Code are required. This field should be sent as `null` for storefront simulations, where the information is not necessary.",
"example": "12345678"
},
"geoCoordinates": {
"type": "array",
"description": "Geographic coordinates of the delivery address. This may be used instead of the postalCode, in case the marketplace is configured to accept geolocation. Example of value: `[-22.9443504,-43.1825635]`.",
"items": {
"type": "string",
"example": "00.00000000"
}
},
"country": {
"type": "string",
"description": "ISO 3-digit code of the country where the delivery address is located. This field is mandatory, for shopping carts simulations, where both Country and Postal Code are required. This field should be sent as `null` for storefront simulations, where the information is not necessary.",
"example": "USA"
},
"items": {
"type": "array",
"description": "Array containing the cart items.",
"items": {
"$ref": "#/components/schemas/fulfillmentItem"
}
},
"sc": {
"type": "string",
"description": "Sales channel (or [trade policy](https://help.vtex.com/en/tutorial/como-funciona-uma-politica-comercial--6Xef8PZiFm40kg2STrMkMV#master-data)) associated to the seller account created.",
"example": "1"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"headers": {},
"content": {
"application/json": {
"examples": {
"response": {
"value": {
"country": "BRA",
"items": [
{
"attachmentOfferings": [
{
"name": "Customization",
"required": true,
"schema": {
"Name": {
"maximumNumberOfCharacters": 20,
"domain": []
},
"Number": {
"maximumNumberOfCharacters": 20,
"domain": []
}
}
}
],
"id": "2000037",
"listPrice": 67203,
"measurementUnit": "un",
"merchantName": "mySeller1",
"offerings": [
{
"type": "Warranty",
"id": "5",
"name": "1 year warranty",
"price": 10000
}
],
"price": 67203,
"priceTags": [],
"priceValidUntil": null,
"quantity": 1,
"requestIndex": 0,
"seller": "1",
"unitMultiplier": 1
}
],
"logisticsInfo": [
{
"itemIndex": 0,
"quantity": 1,
"shipsTo": [
"BRA"
],
"slas": [
{
"id": "Regular",
"deliveryChannel": "delivery",
"name": "Regular Delivery",
"price": 846,
"shippingEstimate": "19bd"
},
{
"id": "Curbside pickup",
"deliveryChannel": "pickup-in-point",
"name": "Curbside pickup",
"shippingEstimate": "0bd",
"price": 0,
"availableDeliveryWindows": [
{
"startDateUtc": "2013-02-04T08:00:00+00:00",
"endDateUtc": "2013-02-04T13:00:00+00:00",
"price": 0
}
],
"pickupStoreInfo": {
"isPickupStore": true,
"friendlyName": "Santa Felicidade",
"address": {
"addressType": "pickup",
"receiverName": null,
"addressId": "548304ed-dd40-4416-b12b-4b32bfa7b1e0",
"postalCode": "82320-040",
"city": "Curitiba",
"state": "PR",
"country": "BRA",
"street": "Rua Domingos Strapasson",
"number": "100",
"neighborhood": "Santa Felicidade",
"complement": "Loja 10",
"reference": null,
"geoCoordinates": [
-49.334934,
-25.401705
]
},
"additionalInfo": ""
}
}
],
"stockBalance": 199,
"deliveryChannels": [
{
"id": "delivery",
"stockBalance": 179
},
{
"id": "pickup-in-point",
"stockBalance": 20
}
]
}
],
"postalCode": "80250000"
}
}
}
}
}
}
},
"deprecated": false
}
},
"/{fulfillmentEndpoint}/pvt/orders": {
"post": {
"tags": [
"External Seller"
],
"summary": "Order placement",
"description": "This request is sent by VTEX to the external seller once the customer finishes their checkout, to let the seller know there is a newly placed order. It does that by calling the **Order Placement** endpoint, which needs to be implemented by the seller.\n\nThe marketplace will send information such as the items contained in the cart, the client’s profile data, the shipping data, and the payment data. With all that, the seller will be able to create the order in their own store.",
"operationId": "order-placement",
"parameters": [
{
"name": "fulfillmentEndpoint",
"in": "path",
"description": "This is the fulfillment endpoint registered for each specific external seller in the **seller management** section of VTEX's admin panel.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "https://marketplaceexample.externalseller.com"
}
},
{
"name": "content-length",
"in": "header",
"description": "Length of the request body.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "2183"
}
},
{
"name": "authorization",
"in": "header",
"description": "Indicates authorization.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "VTEX key=\"appKey\" token=\"appToken\""
}
},
{
"name": "x-vtex-api-appkey",
"in": "header",
"description": "VTEX API app key.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "appKey"
}
},
{
"name": "x-vtex-api-apptoken",
"in": "header",
"description": "VTEX API app token.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "appToken"
}
},
{
"name": "accept",
"in": "header",
"description": "HTTP Client Negotiation _Accept_ Header. Indicates the types of responses the client can understand.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
},
{
"name": "accept-enconding",
"in": "header",
"description": "Indicates the types of response enconding the client can understand.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "gzip, deflate"
}
},
{
"name": "x-vtex-operation-id",
"in": "header",
"description": "VTEX operation ID.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "8032114b-63e9-4e64-b30c-f7afcf676d7a"
}
},
{
"name": "x-forwarded-proto",
"in": "header",
"description": "Determines the protocol used by the client in the request.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "https"
}
},
{
"name": "x-forwarded-for",
"in": "header",
"description": "Identifies the originating IP address of the HTTP client.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "179.35.30.186, 130.176.35.67, 172.16.247.49"
}
},
{
"name": "x-vtex-cache-client-bypass",
"in": "header",
"description": "VTEX cache client bypass.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "1"
}
},
{
"name": "content-type",
"in": "header",
"description": "Describes the type of the content being sent.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
},
{
"name": "traceparent",
"in": "header",
"description": "Identifies the incoming request in a tracing system.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "00-083c0ca18bc8d94183f333809a70cd64-bf5e9a641e230540-00"
}
}
],
"requestBody": {
"description": "",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/orderPlacement"
},
"example": {}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"headers": {},
"content": {
"application/json": {
"examples": {
"response": {
"value": {
"marketplaceOrderId": "959311095",
"marketplaceServicesEndpoint": "https://marketplaceservicesendpoint/",
"marketplacePaymentValue": 11080,
"items": [
{
"id": "2002495",
"quantity": 1,
"Seller": "1",
"commission": 0,
"freightCommission": 0,
"price": 9990,
"bundleItems": [],
"itemAttachment": {
"name": null,
"content": {}
},
"attachments": [],
"priceTags": [],
"measurementUnit": null,
"unitMultiplier": 0,
"isGift": false
}
],
"clientProfileData": {
"email": "32172239852@gmail.com.br",
"firstName": "John",
"lastName": "Smith",
"documentType": null,
"document": "3244239851",
"phone": "399271258",
"corporateName": null,
"tradeName": null,
"corporateDocument": null,
"stateInscription": null,
"corporatePhone": null,
"isCorporate": false,
"userProfileId": null
},
"shippingData": {
"address": {
"addressType": "Residencial",
"receiverName": "John Smith",
"addressId": "Home",
"postalCode": "13476103",
"city": "Americana",
"state": "SP",
"country": "BRA",
"street": "JOÃO DAMÁZIO GOMES",
"number": "311",
"neighborhood": "SÃO JOSÉ",
"complement": null,
"reference": "Bairro Praia Azul / Posto de Saúde 17",
"geoCoordinates": []
},
"logisticsInfo": [
{
"itemIndex": 0,
"selectedSla": "Regular",
"lockTTL": "8d",
"shippingEstimate": "7d",
"price": 1090,
"deliveryWindow": null
}
],
"updateStatus": "updated"
},
"openTextField": null,
"marketingData": {
"utmSource": "buscape",
"utmMedium": "",
"utmCampaign": "freeshipping",
"utmiPage": "_",
"utmiPart": "BuscaFullText",
"utmiCampaign": "artscase for iphone 5"
},
"paymentData": null
}
}
}
}
}
}
}
}
},
"/{fulfillmentEndpoint}/pvt/orders/{orderId}/fulfill": {
"post": {
"tags": [
"External Seller"
],
"summary": "Authorize fulfillment",
"description": "This request is sent from VTEX to the seller after payment is approved, to notify them that the fulfillment process can start<br>.## Response example\n\n\n\n```\n\n{\n\n\"date\": \"2014-10-06 18:52:00\", \n\n\"marketplaceOrderId\": \"959311095\",\n\n\"orderId\": \"123543123\",\n\n\"receipt\": \"e39d05f9-0c54-4469-a626-8bb5cff169f8\"\n\n}\n\n```",
"operationId": "authorize-fulfillment",
"parameters": [
{
"name": "fulfillmentEndpoint",
"in": "path",
"description": "This is the fulfillment endpoint registered for each specific external seller in the **seller management** section of VTEX's admin panel.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "https://marketplaceexample.externalseller.com"
}
},
{
"name": "Accept",
"in": "header",
"description": "HTTP Client Negotiation _Accept_ Header. Indicates the types of responses the client can understand.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
},
{
"name": "Content-Type",
"in": "header",
"description": "Describes the type of the content being sent.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"default": "application/json"
}
},
{
"name": "orderId",
"in": "path",
"description": "ID of the order being fulfilled",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"default": "1138342255777-01"
}
}
],
"requestBody": {
"description": "",
"content": {
"application/json": {
"schema": {
"required": [
"marketplaceOrderId"
],
"type": "object",
"properties": {
"marketplaceOrderId": {
"type": "string",
"description": "Identifies the order. The seller should use this ID to trigger the fulfillment process of the corresponding order.",
"example": "1138342255777-01"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"headers": {},
"content": {
"application/json": {
"examples": {
"response": {
"value": {
"date": "2014-10-06 18:52:00",
"marketplaceOrderId": "959311095",
"orderId": "1138342255777-01",
"receipt": "e39d05f9-0c54-4469-a626-8bb5cff169f8"
}
}
}
}
}
}
}
}
},
"/{fulfillmentEndpoint}/pvt/orders/{orderId}/cancel": {
"post": {
"tags": [
"External Seller"
],
"summary": "Marketplace order cancellation",
"description": "This request may be sent from VTEX to the external seller in case of order cancelation. For that, the seller will need to implement the Marketplace order cancellation endpoint. Whenever this request is received by the seler, the order should be canceled and the fulfillment flow should not proceed. \n\nFor the seller to: \n\n- **Evaluate a cancellation request:** it is possible to send an empty body as a response to the cancellation request, meaning that the seller is evaluating whether to proceed with the cancellation or not. \n\n- **Confirm the cancellation request:** it is possible to confirm the order cancellation by the marketplace by responding to the call with a body including only one information: the `marketplaceOrderId`, which identifies the order in the marketplace. The seller should use this ID to trigger the cancellation of the corresponding order. The seller should then respond with the same `marketplaceOrderId` and also with the `orderId`, which identifies the order in the seller, the date and time of the notification receipt, and a protocol code that confirms the receipt of the request (which may have the value `null`). \n\n- **Refuse a cancellation request:** it is possible to to [send the Invoice](https://developers.vtex.com/vtex-rest-api/reference/external-seller#send-invoice), meaning that the cancellation has been denied, and the flow continues to the [Order Invoicing](https://developers.vtex.com/vtex-rest-api/docs/external-seller-integration-connector#order-invoicing) step, and the ones that follow it. \n\nThis call should be made twice: once for the *Evaluate cancellation request* scenario, and a second time to *Confirm cancellation* or *Refuse cancellation*.",
"operationId": "mkp-order-cancellation",
"parameters": [
{
"name": "fulfillmentEndpoint",
"in": "path",
"description": "This is the fulfillment endpoint registered for each specific external seller in the **seller management** section of VTEX's admin panel.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "marketplaceexample.externalseller.com"
}
},
{
"name": "Accept",
"in": "header",
"description": "HTTP Client Negotiation _Accept_ Header. Indicates the types of responses the client can understand.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
},
{
"name": "Content-Type",
"in": "header",
"description": "Describes the type of the content being sent.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
},
{
"name": "orderId",
"in": "path",
"description": "ID of the order being fulfilled",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"default": "1138342255777-01"
}
}
],
"requestBody": {
"description": "",
"content": {
"application/json": {
"schema": {
"required": [
"marketplaceOrderId"
],
"type": "object",
"properties": {
"marketplaceOrderId": {
"type": "string",
"description": "Identifies the order. The seller should use this ID to trigger the cancellation of the corresponding order.",
"default": "1138342255777-01"
}
}
},
"example": {
"marketplaceOrderId": "1138342255777-01"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"headers": {},
"content": {
"application/json": {
"examples": {
"response": {
"value": {
"date": "2019-05-09 15:31:23",
"marketplaceOrderId": "959311095",
"orderId": "1138342255777-01",
"receipt": "e39d05f9-0c54-4469-a626-8bb5cff169f8"
}
}
}
}
}
}
}
}
},
"/{marketplaceServicesEndpoint}/pvt/orders/{marketplaceOrderId}/invoice": {
"post": {
"tags": [
"External Seller"
],
"summary": "Send invoice",
"description": "This request is sent by the external seller to the VTEX marketplace to send invoice information.\n\nThis can be necessary in a regular order or in the case of a return. The `type` field is used to indicate which of these is the case.",
"operationId": "send-invoice",
"parameters": [
{
"name": "marketplaceServicesEndpoint",
"in": "path",
"description": "This is an endpoint sent from VTEX to the external seller in the [Order placement request](https://developers.vtex.com/vtex-rest-api/reference/external-seller#order-placement).",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "marketplaceservicesendpoint.myvtex.com"
}
},
{
"name": "marketplaceOrderId",
"in": "path",
"description": "Identifies the order in the marketplace.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "1138342255777-01"
}
},
{
"name": "Accept",
"in": "header",
"description": "HTTP Client Negotiation _Accept_ Header. Indicates the types of responses the client can understand.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
},
{
"name": "Content-Type",
"in": "header",
"description": "Describes the type of the content being sent.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
}
],
"requestBody": {
"description": "",
"content": {
"application/json": {
"schema": {
"required": [
"type",
"invoiceNumber",
"items"
],
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Indicates the type of the invoice. Use `\"Output\"` for regular orders and `\"Input\"` for returns.",
"example": "Output"
},
"invoiceNumber": {
"type": "string",
"description": "Invoice number",
"example": "NFe-00002"
},
"courier": {
"type": "string",
"description": "Courier, if available on invoice.",
"example": "courier-example"
},
"trackingNumber": {
"type": "string",
"description": "Tracking number.",
"example": "12345678abc"
},
"trackingUrl": {
"type": "string",
"description": "Tracking URL.",
"example": "https://courier-example.com/tracking"
},
"items": {
"type": "array",
"description": "Array containing the order items.",
"items": {
"type": "object",
"description": "",
"required": [
"id",
"quantity",
"price"
],
"properties": {
"id": {
"type": "string",
"description": "SKU ID.",
"example": "6"
},
"quantity": {
"type": "integer",
"description": "Quantity of items of the SKU in the cart.",
"example": 1
},
"price": {
"type": "integer",
"description": "Price of the item.",
"example": 5500
}
}
}
},
"issuanceDate": {
"type": "string",
"description": "Issuance date.",
"example": "2021-05-21T10:00:00"
},
"invoiceValue": {
"type": "integer",
"description": "Invoice value.",
"example": 6000
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"headers": {},
"content": {
"application/json": {
"examples": {
"response": {
"value": {
"date": "2021-06-09T15:22:56.7612218-02:00",
"orderId": "1138342255777-01",
"receipt": "527b1ae251264ef1b7a9b597cd8f16b9"
}
}
}
}
}
}
},
"deprecated": false
}
},
"/{marketplaceServicesEndpoint}/pvt/orders/{marketplaceOrderId}/invoice/{invoiceNumber}": {
"post": {
"tags": [
"External Seller"
],
"summary": "Send tracking information",
"description": "This request is sent by the external seller to the VTEX marketplace to add tracking information to a given order's invoice, in case it is necessary to do so after the invoice has been sent.",
"operationId": "send-tracking-information",
"parameters": [
{
"name": "marketplaceServicesEndpoint",
"in": "path",
"description": "This is an endpoint sent from VTEX to the external seller in the [Order placement request](https://developers.vtex.com/vtex-rest-api/reference/external-seller#order-placement).",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "marketplaceservicesendpoint.myvtex.com"
}
},
{
"name": "marketplaceOrderId",
"in": "path",
"description": "Identifies the order in the marketplace.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "1138342255777-01"
}
},
{
"name": "invoiceNumber",
"in": "path",
"description": "Invoice number.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "NFe-00002"
}
},
{
"name": "Accept",
"in": "header",
"description": "HTTP Client Negotiation _Accept_ Header. Indicates the types of responses the client can understand.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
},
{
"name": "Content-Type",
"in": "header",
"description": "Describes the type of the content being sent.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "application/json"
}
}
],
"requestBody": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"courier": {
"type": "string",
"description": "Courier.",
"example": "courier-example"
},
"trackingNumber": {
"type": "string",
"description": "Tracking number.",
"example": "12345678abc"
},
"trackingUrl": {
"type": "string",
"description": "Tracking URL.",
"example": "https://courier-example.com/tracking"
},
"dispatchedDate": {
"type": "string",
"description": "Date of order dispatch.",
"example": "2021-06-09"
}
}
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"headers": {},
"content": {
"application/json": {
"examples": {
"response": {
"value": {
"date": "2021-06-09T15:22:56.7612218-02:00",
"orderId": "1138342255777-01",
"receipt": "527b1ae251264ef1b7a9b597cd8f16b9"
}
}
}
}
}
}
},
"deprecated": false
}
},
"/{marketplaceServicesEndpoint}/pvt/orders/{marketplaceOrderId}/invoice/{invoiceNumber}/tracking": {
"post": {
"tags": [
"External Seller"
],
"summary": "Update tracking status",
"description": "This request is sent by the external seller to the VTEX marketplace to update a given order's tracking status.",
"operationId": "update-tracking-status",
"parameters": [
{
"name": "marketplaceServicesEndpoint",
"in": "path",
"description": "This is an endpoint sent from VTEX to the external seller in the [Order placement request](https://developers.vtex.com/vtex-rest-api/reference/external-seller#order-placement).",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "marketplaceservicesendpoint.myvtex.com"
}
},
{
"name": "marketplaceOrderId",
"in": "path",
"description": "Identifies the order in the marketplace.",
"required": true,
"style": "simple",
"schema": {
"type": "string",
"example": "1138342255777-01"
}
},
{
"name": "invoiceNumber",
"in": "path",
"description": "Invoice number.",