{"openapi":"3.0.0","servers":[{"url":"https://vtex.local"},{"description":"VTEX server url","url":"https://{accountName}.{environment}.com.br","variables":{"accountName":{"default":"{accountName}","description":"Name of the VTEX account. Used as part of the URL"},"environment":{"default":"{environment}","description":"Environment to use. Used as part of the URL."}}}],"info":{"contact":{},"description":"Endpoints that deal with order management. New version of the orders API.","title":"Orders API (PII version)","version":"1.0","x-origin":[{"format":"openapi","url":"https://raw.githubusercontent.com/vtex/openapi-schemas/master/VTEX - Orders API (PII version).json","version":"3.0"}],"x-providerName":"vtex.local","x-serviceName":"Orders-API-(PII-version)"},"security":[{"appKey":[],"appToken":[]}],"tags":[{"name":"Orders"},{"name":"Invoice"},{"name":"Tracking"},{"name":"Conversation"},{"name":"Payment"},{"name":"Feed v3"},{"name":"Order hook"},{"name":"Export order report"},{"name":"User orders"},{"name":"Change seller"}],"paths":{"/api/orders/extendsearch/orders":{"post":{"deprecated":false,"description":"Retrieves a list of orders according to the filters described below.\n\r\n\r> This endpoint returns masked order data.\n\r\n\r> This should **not** be used for integrations. Use the [orders Feed or hook](https://developers.vtex.com/vtex-rest-api/docs/feed-v3-1) for this purpose.\n\r\n\rThis endpoint returns only orders that already have been indexed, which takes aproximately four minutes. Because of this, the data retrieved may present inconsistencies. To get live up to date information and [build order integrations](https://developers.vtex.com/vtex-rest-api/docs/erp-integration-set-up-order-integration) use the [orders Feed or hook](https://developers.vtex.com/vtex-rest-api/docs/feed-v3-1).\n\r\n\r> Check the new [Orders onboarding guide](https://developers.vtex.com/vtex-rest-api/docs/orders-overview). We created this guide to improve the onboarding experience for developers at VTEX. It assembles all documentation on our Developer Portal about Orders and is organized by focusing on the developer's journey.\n\r\n\r## Do not use request for integrations\n\r> This endpoint returns only orders that already have been indexed, which takes aproximately four minutes. Because of this, the data retrieved may present inconsistencies or become unavailable in periods of peak order volume. In other words, **order integrations built with the List orders endpoint are not reliable** and **will not be supported**. To get live up to date information and [build order integrations](https://developers.vtex.com/vtex-rest-api/docs/erp-integration-set-up-order-integration) use the [orders Feed or hook](https://developers.vtex.com/vtex-rest-api/docs/feed-v3-1).\n\r\n\r## Throtling\n\rEach account can make up to 5000 requests per minute.\n\r\n\r## Request parameters allowed\n\r\n\r| Attribute    | Type        | Description |\r\n| --------------- |:---------:| -------------------------------------------------------------------------------------------:|\r\n| `orderBy` | string | Order Field and Order Type concatenated `orderBy={{OrderField}},{{OrderType}}`  |\r\n| `OrderField` | string | Order Field expected values: `creationDate`,`orderId`,`items`,`totalValue` and `origin` |\r\n| `OrderType` | string | Order Type expected values: `asc` and `desc`  |\r\n\r\n\r\n## Sorting Examples\r\n\r\n\r\nCreationDate:\r\n\r\n    `/api/oms/pvt/orders?orderBy=creationDate,desc`\r\n\r\n\r\nOrderID:\r\n\r\n    `/api/oms/pvt/orders?orderBy=orderId,desc`\r\n\r\n\r\nItems:\r\n\r\n    `/api/oms/pvt/orders?orderBy=items,asc`\r\n\r\n\r\nTotalValue:\r\n\r\n    `/api/oms/pvt/orders?orderBy=totalValue,desc`\r\n\r\n\r\nOrigin: \r\n\r\n    `/api/oms/pvt/orders?orderBy=origin,asc`\r\n\r\n\r\n\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `page` | integer | Page Number  |\r\n\r\n## Pagination Examples:\r\n\r\n    `/api/oms/pvt/orders?page=3`\r\n\r\n\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `per_page` | integer | Quantity orders per page  |\r\n\r\nQuantity per Page Examples:\r\n\r\n    `/api/oms/pvt/orders?per_page=15`\r\n\r\n\r\n\r\n\r\n\r\n<div class=\"alert alert-info\">Pagination Limit: The limit of pages that can be requested is 30.\r\n</div>\r\n\r\n\r\n\r\n## Time zone query \r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `utc` | integer | Time Zone. By including this parameter alone in your query, the call will not convert the UTC nor show the number of orders set for that UTC. To filter orders with the desired UTC, you must also modify date and time in the `f_creationDate=creationDate:` parameter.  |\r\n\r\nTime Zone Example:\r\n\r\n    `/api/oms/pvt/orders?utc=-0200`\r\n\r\n\r\n\r\n\r\n## Request filters \r\n\r\n\r\n## Fulltext\r\n\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `q` | string | Fulltext accepts Order Ids, Client E-mail, Client Document and Client Name  |\r\n\r\n> The `+` caracter isn't allowed in Fulltext Search\r\n\r\n\r\nFulltext filter Examples:\r\n\r\nOrderID: \r\n    \r\n    `/api/oms/pvt/orders?q=v212333lux-02`\r\n\r\n\r\nEmail:\r\n    \r\n    `/api/oms/pvt/orders?q=rodrigo.cunha@vtex.com`\r\n\r\n\r\nDocument: \r\n    \r\n    `/api/oms/pvt/orders?q=21133355524`\r\n\r\n\r\nClientName:\r\n\r\n    `/api/oms/pvt/orders?q=Cunha`\r\n\r\n\r\n\r\n\r\n## Shipping Estimate\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_shippingEstimate` | string | Concatened value of quantity days and sufix `.days`  |\r\n\r\n\r\n\r\n\r\nShipping Estimate filter Examples:\r\n\r\n\r\nNext 7 days:\r\n\r\n    `/api/oms/pvt/orders?f_shippingEstimate=7.days`\r\n\r\n\r\nTomorrow: \r\n\r\n    `/api/oms/pvt/orders?f_shippingEstimate=1.days`\r\n\r\n\r\nToday:\r\n    \r\n    `/api/oms/pvt/orders?f_shippingEstimate=0.days`\r\n\r\n\r\nLate:\r\n    \r\n    `/api/oms/pvt/orders?f_shippingEstimate=-1.days`\r\n\r\n\r\n\r\n\r\n## Invoiced Date\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_invoicedDate` | string | Concatened value sufix `invoicedDate` and range date in Timestamp format  |\r\n\r\n\r\n\r\nInvoiced Date filter Examples:\r\n\r\n1 Day: \r\n\r\n    `/api/oms/pvt/orders?f_invoicedDate=invoicedDate:[2017-01-01T02:00:00.000Z TO 2017-01-02T01:59:59.999Z]`\r\n\r\n\r\n1 Month: \r\n    \r\n    `/api/oms/pvt/orders?f_invoicedDate=invoicedDate:[2017-01-01T02:00:00.000Z TO 2017-02-01T01:59:59.999Z]`\r\n\r\n\r\n1 Year:\r\n\r\n    `/api/oms/pvt/orders?f_invoicedDate=invoicedDate:[2016-01-01T02:00:00.000Z TO 2017-01-01T01:59:59.999Z]`\r\n\r\n\r\n\r\n## Order Date\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_creationDate` | string | Concatened value suffix `creationDate` and range date in Timestamp format  |\r\n\r\n\r\n\r\nOrder Date filter Examples:\r\n\r\n1 Day:\r\n\r\n    `/api/oms/pvt/orders?f_creationDate=creationDate:[2017-01-01T02:00:00.000Z TO 2017-01-02T01:59:59.999Z]`\r\n\r\n\r\n1 Month:\r\n\r\n    `/api/oms/pvt/orders?f_creationDate=creationDate:[2017-01-01T02:00:00.000Z TO 2017-02-01T01:59:59.999Z]`\r\n\r\n\r\n1 Year:\r\n\r\n    `/api/oms/pvt/orders?f_creationDate=creationDate:[2016-01-01T02:00:00.000Z TO 2017-01-01T01:59:59.999Z]`\r\n\r\n\r\n\r\n\r\n## Authorized Date\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_authorizedDate` | string | Concatened value suffix `authorizedDate` and range date in Timestamp format  |\r\n\r\n\r\n\r\nAuthorized Date filter Examples:\r\n\r\n1 Day:\r\n\r\n    `/api/oms/pvt/orders?f_authorizedDate=authorizedDate:[2017-01-01T02:00:00.000Z TO 2017-01-02T01:59:59.999Z]`\r\n\r\n\r\n1 Month:\r\n\r\n    `/api/oms/pvt/orders?f_authorizedDate=authorizedDate:[2017-01-01T02:00:00.000Z TO 2017-02-01T01:59:59.999Z]`\r\n\r\n\r\n1 Year:\r\n\r\n    `/api/oms/pvt/orders?f_authorizedDate=authorizedDate:[2016-01-01T02:00:00.000Z TO 2017-01-01T01:59:59.999Z]`\r\n\r\n\r\n\r\n\r\n## UTMs\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_UtmSource` | string | UTM Source value  |\r\n\r\n\r\n\r\nChannels filter Examples:\r\n\r\n    `/api/oms/pvt/orders?f_UtmSource=buscape_campaign`\r\n\r\n\r\n\r\n\r\n## Seller\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_sellerNames` | string | Seller Name value  |\r\n\r\n\r\n\r\nSeller filter Examples:\r\n\r\n    `/api/oms/pvt/orders?f_sellerNames=Fast+Shop`\r\n\r\n\r\n\r\n\r\n## Call Center Operator\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_callCenterOperatorName` | string | Call Center Operator Value  |\r\n\r\n\r\n\r\nCall Center Operator filter Examples:\r\n\r\n    `/api/oms/pvt/orders?f_callCenterOperatorName=Operator%20Name`\r\n\r\n\r\n\r\n\r\n## Sales Channel Name\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_salesChannel` | string | Sales Channel Name Value  |\r\n\r\n\r\n\r\nSales Channel Name filter Examples:\r\n\r\n    `/api/oms/pvt/orders?f_salesChannel=Main`\r\n\r\n\r\n\r\n\r\n\r\n## Sales Channel ID\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `salesChannelId` | string | Sales Channel ID Value  |\r\n\r\n\r\n\r\nSales Channel ID filter Examples:\r\n\r\n    `/api/oms/pvt/orders?salesChannelId=1`\r\n\r\n\r\n\r\n\r\n\r\n## Affiliate ID\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_affiliateId` | string | Affiliate ID Value  |\r\n\r\n\r\n\r\nAffiliate ID filter Examples:\r\n\r\n    `/api/oms/pvt/orders?f_affiliateId=WLM`\r\n\r\n\r\n\r\n\r\n## Order Status \r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_status` | string | Order Status Value  |\r\n\r\n\r\n\r\n| Order Status avaible to filter    |\r\n| --------------------- |\r\n| `waiting-for-sellers-confirmation` | \r\n| `payment-pending` | \r\n| `payment-approved` | \r\n| `ready-for-handling` | \r\n| `handling` | \r\n| `invoiced` | \r\n| `canceled` | \r\n\r\n\r\nOrder Status filter Examples:\r\n\r\n    `/api/oms/pvt/orders?f_status=ready-for-handling`\r\n\r\n\r\n\r\n\r\n## Order Status Description\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_statusDescription` | string | Order Status Description Value  |\r\n\r\n\r\n\r\n\r\n\r\n| Order Status Description avaible to filter |\r\n| --------------------- |\r\n| `Aguardando+autorização+para+despachar` | \r\n| `Pagamento+Pendente` | \r\n| `Pagamento+Aprovado` | \r\n| `Pronto+para+o+manuseio` | \r\n| `Preparando+Entrega` | \r\n| `Faturado` | \r\n| `Cancelado` | \r\n\r\nOrder Status Description filter Examples:\r\n\r\n    `/api/oms/pvt/orders?f_statusDescription=Pronto+para+o+manuseio`\r\n\r\n\r\n\r\n\r\n\r\n## Order Situation\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `incompleteOrders` | boolean | If is a Incomplete Order  |\r\n\r\n\r\n> know more about [Incomplete Orders in VTEX Help](https://help.vtex.com/en/tutorial/understanding-incomplete-orders)\r\n\r\nOrder Situation filter Examples:\r\n\r\n    `/api/oms/pvt/orders?incompleteOrders=true`\r\n\r\n\r\n\r\n\r\n\r\n## Error Situation\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `incompleteOrders` | boolean | Error Situation Type  |\r\n\r\n\r\n\r\n| Error Situation Values avaible to filter |\r\n| ------- |\r\n| `all` | \r\n| `perm` | \r\n| `temp` |  \r\n\r\n\r\nError Situation filter Examples:\r\n\r\n    `/api/oms/pvt/orders?filterError=all`\r\n\r\n\r\n\r\n\r\n\r\n\r\n## Payment Type Name\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_paymentNames` | string | Payment Type Value  |\r\n\r\n\r\n\r\nPayment Type Name filter Examples:\r\n\r\n    `/api/oms/pvt/orders?f_paymentNames=Visa`\r\n\r\n\r\n\r\n\r\n\r\n## Rates and Benefits Name\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `f_RnB` | string | Rates and Benefits Name  |\r\n\r\n\r\n\r\nRates and Benefits filter Examples:\r\n\r\n    `/api/oms/pvt/orders?f_RnB=\"Free+Shipping\"`\r\n\r\n\r\n\r\n\r\n## Search Field\r\n\r\n| Attribute    | Type      | Description |\r\n| ------------ |:---------:| -----------:|\r\n| `searchField` | string | Affiliate ID Value  |\r\n| `sku_Ids&sku_Ids` | integer | SKU ID  |\r\n| `listId&listId` | integer | Gift List ID  |\r\n| `tid&tid` | integer | Transaction ID (TID)  |\r\n| `pci_tid&pci_tid` | integer | PCI Connector's Transaction ID (TID)  |\r\n| `paymentId&paymentId` | integer | Payment ID (PID)  |\r\n| `nsu&nsu` | integer | Connector's NSU  |\r\n\r\n\r\n\r\nSearch Field filter Examples:\r\n\r\nSKU ID:\r\n    \r\n    `/api/oms/pvt/orders?searchField=sku_Ids&sku_Ids=11223`\r\n\r\n\r\n\r\nGift List ID:\r\n    \r\n    `/api/oms/pvt/orders?searchField=listId&listId=11223`\r\n\r\n\r\n    \r\nTransaction ID (TID):\r\n    \r\n    `/api/oms/pvt/orders?searchField=tid&tid=54546300238810034995829230012`\r\n\r\n\r\n    \r\nPCI Connector's Transaction ID (TID):\r\n\r\n    `/api/oms/pvt/orders?searchField=pci_tid&pci_tid=7032909234899834298423209`\r\n\r\n\r\n    \r\nPayment ID (PID):\r\n    \r\n    `/api/oms/pvt/orders?searchField=paymentId&paymentId=2`\r\n\r\n\r\n    \r\nConnector's NSU:\r\n    \r\n    `/api/oms/pvt/orders?searchField=nsu&nsu=2437281`\r\n\\n\\r\\n\\r## Response objects\\n\\r\\n\\r,\r\n**Response object has the following properties:**\r\n\r\n\r\n| Attribute    | Type        | Description |\r\n| --------------- |:---------:| --------------------------------------:|\r\n| `list` | object | Order List Object |\r\n| `shippingEstimateDate` | string | Estimate Shipping Date |\r\n| `affiliateId` | string | Seller Name who was responsible for the order |\r\n| `authorizedDate` | string | Authorized Order Date |\r\n| `callCenterOperatorData` | string | Call Center Operator responsible for the order |\r\n| `name` | string | Client Name|\r\n| `creationDate` | string | Order Creation Date |\r\n| `currencyCode` | string | Currency Code in ISO 4217  |\r\n| `items` | object | Obsolete Field  |\r\n| `lastMessageUnread` | string | Last sent transactional message  |\r\n| `listId` | string | Releated Gift List Id |\r\n| `listType` | string | Releated Gift List Type |\r\n| `marketplaceOrderId` | string | Marketplace Order Id |\r\n| `orderId` | string | Change receipt order Id |\r\n| `orderIsComplete` | boolean | If is a Order Completed |\r\n| `origin` | string | Order Origin: \"Marketplace\" or \"Fulfillment\" |\r\n| `paymentNames` | string | Payment System Name |\r\n| `salesChannel` | string | Order Sales Channel Id |\r\n| `sequence` | string | Order Sequence ID |\r\n| `status` | string | Order Status |\r\n| `statusDescription` | string | Status Description |\r\n| `totalItems` | integer | Total Order Items |\r\n| `totalValue` | integer | Total Value Amount |\r\n| `workflowInErrorState` | boolean | If is a Work Flow Error |\r\n| `workflowInRetry` | boolean | If is in a Work Flow Retry |\r\n| `paging` | object | Paging Details Object |\r\n| `pages` | integer | Paging Total Pages |\r\n| `perPage` | integer | Paging total per Page |\r\n| `total` | integer | Total Result |\r\n| `stats` | object | Results segmented by `totalItems` and `totalValue` |\r\n| `totalItems` | integer | Total Order Items segmeted by `currencyCode` and `origin`|\r\n| `totalValue` | integer | Total Value Amount segmeted by `currencyCode` and `origin`|\r\n| `currencyCode` | string | Currency Code in ISO 4217  |\r\n| `origin` | string | Order Origin: \"Marketplace\" or \"Fulfillment\" |\r\n| `Count` | integer | Orders Count |\r\n| `Facets` | object | Grouping Object |\r\n| `Max` | object | Paging Details Object |\r\n| `Mean` | object | Paging Details Object |\r\n| `Min` | object | Paging Details Object |\r\n| `Missing` | object | Paging Details Object |\r\n| `StdDev` | object | Paging Details Object |\r\n| `Sum` | object | Paging Details Object |\r\n| `SumOfSquares` | object | Paging Details Object |","operationId":"ListOrders2","parameters":[{"$ref":"#/components/parameters/Content-Type"},{"$ref":"#/components/parameters/Accept"},{"$ref":"#/components/parameters/f_hasInputInvoice"}],"requestBody":{"content":{"application/json":{"schema":{"properties":{"f_creationDate":{"description":"Concatened value sufix {{creationDate}} and range date in Timestamp format.","example":"creationDate:[2021-11-01T00:00:00.000Z TO 2022-11-10T02:00:00.000Z]","type":"string"},"page":{"description":"Number of the page to be retrieved.","example":1,"type":"integer"},"per_page":{"description":"Number of orders per page.","example":15,"type":"integer"},"q":{"description":"Full-text search for the orders.","example":"Postman Test","type":"string"}},"required":["f_creationDate","per_page","page"],"type":"object"}}}},"responses":{"200":{"content":{"application/json; charset=utf-8":{"example":{"facets":[],"list":[{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"J C","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Sua Nota Fiscal foi emitida. Referente ao Pedido #v502559llux-01 Olá, J. Estamos empacotando seu produto para providenci","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502559llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Boleto Bancário","salesChannel":"1","sequence":"502559","status":"invoiced","statusDescription":"Faturado","totalItems":1,"totalValue":7453,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.146Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"Rodrigo VTEX","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store Seu pedido foi alterado! Pedido realizado em: 28/01/2019 Olá, Rodrigo. Seu pedido foi alterado. Seguem informações abaixo: ","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502556llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Boleto Bancário","salesChannel":"1","sequence":"502556","status":"handling","statusDescription":"Preparando Entrega","totalItems":1,"totalValue":1160,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.146Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Sua Nota Fiscal foi emitida. Referente ao Pedido #v502553llux-01 Olá, test. Estamos empacotando seu produto para provide","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502553llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Mastercard","salesChannel":"1","sequence":"502554","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":10150,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.146Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pagamento foi aprovado. Referente ao Pedido #v502550llux-01 Olá, test. Estamos providenciando a emissão da Nota Fisc","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502550llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Mastercard","salesChannel":"1","sequence":"502551","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":10150,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.146Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pagamento foi aprovado. Referente ao Pedido #v502547llux-01 Olá, test. Estamos providenciando a emissão da Nota Fisc","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502547llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Mastercard","salesChannel":"1","sequence":"502548","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":10150,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":null,"callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pedido foi cancelado. Referente ao Pedido #v502544llux-01 Resumo Itens R$ 89,90 Total R$ 89,90 Produto Alavanca De M","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502544llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Boleto Bancário","salesChannel":"1","sequence":"502544","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":8990,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":null,"callCenterOperatorName":null,"clientName":"Douglas Rodrigues","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pedido foi cancelado. Referente ao Pedido #v502541llux-01 Resumo Itens R$ 32,90 Total R$ 32,90 Produto Bay Max L 1 u","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502541llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Boleto Bancário","salesChannel":"1","sequence":"502541","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":3290,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.146Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pagamento foi aprovado. Referente ao Pedido #v502538llux-01 Olá, test. Estamos providenciando a emissão da Nota Fisc","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502538llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Mastercard","salesChannel":"1","sequence":"502538","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":8990,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":"cancelamento teste shp ","listId":null,"listType":null,"marketPlaceOrderId":"880102018018-01","orderId":"SCP-880102018018-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502537","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"880091692043-01","orderId":"SCP-880091692043-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502536","status":"invoiced","statusDescription":"Faturado","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":"Teste de cancelamento do ShopFácil ","listId":null,"listType":null,"marketPlaceOrderId":"880091058221-01","orderId":"SCP-880091058221-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502535","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.146Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"880090643370-01","orderId":"SCP-880090643370-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502534","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":null,"callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"880090622238-01","orderId":"SCP-880090622238-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502533","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"MNC","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"Carlos VTEX","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"877730530419-01","orderId":"MNC-877730530419-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502532","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":11150,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.146Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.146Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.146Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"876733475998-01","orderId":"SCP-876733475998-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502531","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false}],"paging":{"currentPage":1,"pages":6,"perPage":15,"total":84},"stats":{"stats":{"totalItems":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":1,"Mean":1,"Min":1,"Missing":0,"StdDev":0,"Sum":68,"SumOfSquares":68},"Marketplace":{"Count":16,"Facets":null,"Max":89,"Mean":7.4375,"Min":1,"Missing":0,"StdDev":21.92401651157926,"Sum":119,"SumOfSquares":8095}}},"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163},"totalValue":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":11150,"Mean":1395.5882352941176,"Min":1250,"Missing":0,"StdDev":1200.5513439298484,"Sum":94900,"SumOfSquares":229010000},"Marketplace":{"Count":16,"Facets":null,"Max":21526180,"Mean":1373100.6875,"Min":1160,"Missing":0,"StdDev":5374326.141087491,"Sum":21969611,"SumOfSquares":463417210029853}}},"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}}}},"schema":{"$ref":"#/components/schemas/ListOrders"}}},"description":"OK","headers":{"Cache-Control":{"content":{"text/plain":{"example":"no-cache","schema":{"type":"string"}}}},"Connection":{"content":{"text/plain":{"example":"close","schema":{"type":"string"}}}},"Content-Encoding":{"content":{"text/plain":{"example":"gzip","schema":{"type":"string"}}}},"Date":{"content":{"text/plain":{"example":"Mon, 13 Feb 2017 15:25:12 GMT","schema":{"type":"string"}}}},"Expires":{"content":{"text/plain":{"example":"-1","schema":{"type":"string"}}}},"Pragma":{"content":{"text/plain":{"example":"no-cache","schema":{"type":"string"}}}},"Server":{"content":{"text/plain":{"example":"nginx","schema":{"type":"string"}}}},"Vary":{"content":{"text/plain":{"example":"Accept-Encoding","schema":{"type":"string"}}}},"X-CDNIgnore":{"content":{"text/plain":{"example":"1","schema":{"type":"string"}}}},"X-Powered-by-VTEX-Janus-Edge":{"content":{"text/plain":{"example":"v1.35.3","schema":{"type":"string"}}}},"X-Track":{"content":{"text/plain":{"example":"stable","schema":{"type":"string"}}}},"X-VTEX-Janus-Router-Backend-App":{"content":{"text/plain":{"example":"omsapi-v1.5.135","schema":{"type":"string"}}}}}}},"summary":"List orders","tags":["Orders"]}},"/api/orders/pvt/document/{orderId}":{"get":{"deprecated":false,"description":"Retrieves order details by searching a specific order ID.\n\r\n\r>If you wish to retrieve unmasked data, use the `reason` parameter.\n\r\n\r> The `View order` resource is needed to use this API request. This is included in `OMS - Full access` and `IntegrationProfile - Fulfillment Oms`, among other default roles available in the Admin. Learn more about the [License manager roles and resources](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#).\n\r\n\r> Check the new [Orders onboarding guide](https://developers.vtex.com/vtex-rest-api/docs/orders-overview). We created this guide to improve the onboarding experience for developers at VTEX. It assembles all documentation on our Developer Portal about Orders and is organized by focusing on the developer's journey.\n\r\n\r> Throttling: Each account can make up to 5000 requests per minute.\n\r\n\r## Request object has the following properties:\r\n\r\n| Attribute    | Type        | Description |\r\n| --------------- |:---------:| --------------------------------------:|\r\n| `orderId` | string | Order Id |\r\n\r\n\r\n## Response object has the following properties:\r\n\r\n\r\n| Attribute    | Type        | Description |\r\n| --------------- |:---------:| --------------------------------------:|\r\n| `affiliateId` | string | Seller Name who was responsible for the order |\r\n| `allowCancellation` | boolean | If Cancellation is allowed |\r\n| `allowEdition` | boolean | If Order Edition is allowed |\r\n| `approvedBy` | string | User who approved the order |\r\n| `authorizedDate` | string | Authorized Order Date |\r\n| `callCenterOperatorData` | string | Call Center Operator responsible for the order |\r\n| `cancelReason` | string | Cancel Reason |\r\n| `cancelledBy` | string | User who Cancelled the order |\r\n| `changesAttachment` | object | Change details object |\r\n| `changesData` | object | Array with each change |\r\n| `discountValue` | integer | Change Discount Value |\r\n| `incrementValue` | integer | Change Increment Value |\r\n| `itemsAdded` | object | Added items details |\r\n| `itemsRemoved` | object | Removed items details |\r\n| `id` | integer | Changed SKU ID |\r\n| `name` | string | Changed SKU Name |\r\n| `price` | integer | Changed SKU Price |\r\n| `quantity` | integer | Changed SKU Quantity |\r\n| `unitMultiplier` | integer | Changed SKU Unit Multiplier |\r\n| `reason` | string | Change Reason |\r\n| `receipt` | object | Change receipt details object |\r\n| `date` | string | Change receipt date |\r\n| `orderId` | string | Change receipt order Id |\r\n| `receipt` | object | Change receipt ID |\r\n| `id` | string | Object Id, expect value \"changeAttachment\" |\r\n| `clientProfileData` | object | Object with all Cliente Profile Data |\r\n| `corporateDocument` | string | Client Corporate Document |\r\n| `corporateName` | string | Client Corporate Name |\r\n| `corporatePhone` | string | Cliente Corporate Telephone |\r\n| `customerClass` | string | Customer class |\r\n| `document` | string | Client Document |\r\n| `documentType` | string | Client Document Type |\r\n| `email` | string | Client e-mail |\r\n| `firstName` | string | Client First Name |\r\n| `id` | string | Object ID, expected value \"clientProfileData\" |\r\n| `isCorporate` | string | If the Client is a Corporate Client |\r\n| `lastName` | string | Client Last Name|\r\n| `phone` | string | Client Telephone |\r\n| `stateInscription` | string | Client Corporate Inscription |\r\n| `tradeName` | string | Client Corporate Trade Name |\r\n| `userProfileId` | string | Client User Profile ID |\r\n| `commercialConditionData` | object | Commercial condition information, including `\"Id\"`, `\"parentOrderId\"`, and `\"reason\"` |\r\n| `creationDate` | string | Order Creation Date |\r\n| `customData` | object | Custom Data Object |\r\n| `customApps` | object | Custom apps details object |\r\n| `fields` | object | Custom app fields |\r\n| `id` | string | Custom App ID |\r\n| `major` | integer | Major |\r\n| `emailTracked` | string | Client Conversation Tracker email  |\r\n| `followUpEmail` | string | Responsible store e-mail |\r\n| `giftRegistryData` | object | Gift registry list information, including `\"addressId\"` (object), `\"description\"` (string), and `\"giftRegistryId\"` (string) |\r\n| `hostname` | string | Account hostname registered in License Manager |\r\n| `invoiceData` | object | Information pertinent to the order's invoice |\r\n| `invoicedDate` | string | Invoice Date |\r\n| `isCheckedIn` | boolean | True if order is from inStore |\r\n| `isCompleted` | boolean | True if the order is completed |\r\n| `items` | object | Order items object |\r\n| `additionalInfo` | string | Order item additional info |\r\n| `brandId` | string | Brand ID |\r\n| `brandName` | string | Brand name |\r\n| `categoriesIds` | string | Item category ID |\r\n| `commercialConditionId` | string | Invoice date |\r\n| `dimension` | object | Item dimension object |\r\n| `cubicweight` | number | Item cubic weight |\r\n| `height` | number | Item height |\r\n| `length` | number | Item length |\r\n| `weight` | number | Item weight |\r\n| `width` | number | Item width |\r\n| `offeringInfo` | string | Extra information on offering |\r\n| `offeringType` | string | Offering type |\r\n| `offeringTypeId` | string | ID of offering type |\r\n| `productClusterId` | string | All releated product clusters |\r\n| `attachments` | object | Attachents Array |\r\n| `content` | object | Attachment Content Custom Field |\r\n| `name` | string | Attachment Name |\r\n| `bundleItems` | object | Invoice date |\r\n| `commission` | string | Comission value registered to Seller |\r\n| `components` | object | If item is a kit, contains components information |\r\n| `detailUrl` | string | Product Slug URL |\r\n| `ean` | string | SKU EAN |\r\n| `freightCommission` | integer | Comission value registered to seller |\r\n| `id` | string | SKU Id |\r\n| `imageUrl` | string | SKU Image URL |\r\n| `isGift` | string | If this item is a gift in order context |\r\n| `itemAttachment` | object | Attachment Object |\r\n| `content` | object | Attachment Content Array |\r\n| `name` | string | Attachment Name |\r\n| `listPrice` | integer | Item List Price |\r\n| `lockId` | string | Reservation ID |\r\n| `manualPrice` | string | Manually inserted price, if there is one. |\r\n| `measurementUnit` | string | Item measurement unit |\r\n| `name` | string | Item name |\r\n| `offerings` | object | Offerings information |\r\n| `params` | object | \"ContextParameter\" hashset with `\"name\"` and `\"value\"` |\r\n| `preSaleDate` | string | Item pre sale date |\r\n| `price` | integer | Item Price |\r\n| `items[].priceDefinition`                        | Object   | Price information for all units of a specific item.                                                                                                                  |\r\n| `items[].priceDefinition.total`                  | Integer  | Total value for all units of the item in cents.                                                                                                                      |\r\n| `items[].priceDefinition.calculatedSellingPrice` | Integer  | Item's calculated unitary selling price in cents.                                                                                                                    |\r\n| `items[].priceDefinition.sellingPrices`          | Array    | Array of objects, each containing `value` (in cents) and `quantity` for the different rounding instances that can be combined to form the correctly rounded `total`. |\r\n| `priceTags` | object | Object with all price modifiers |\r\n| `identifier` | string | Price Tag ID |\r\n| `isPercentual` | boolean | Indicates whether the price tag is a percentual modifier |\r\n| `name` | string | Price tag name |\r\n| `rawValue` | string | Price tag raw value |\r\n| `value` | string | Price tag value |\r\n| `priceValidUntil` | string | Price expiration date |\r\n| `productId` | string | Item product ID |\r\n| `quantity` | integer | Item quantity |\r\n| `refId` | string | Item reference ID |\r\n| `rewardValue` | integer | Item reward value |\r\n| `seller` | string | Item seller |\r\n| `sellerSku` | string | Invoice Date |\r\n| `sellingPrice` | integer | Item selling price. For more accurate information, see the `priceDefinition` field |\r\n| `shippingPrice` | string | Item Shipping Price |\r\n| `tax` | integer | Item Tax |\r\n| `taxCode` | string | Item Tax Code |\r\n| `uniqueId` | string | Item Order Unique ID |\r\n| `unitMultiplier` | integer | Item Unit Multipler |\r\n| `lastChange` | string | Order Last Change Date |\r\n| `lastMessage` | string | initial excerpt from last message sent to the customer |\r\n| `marketingData` | string | Marketing Data Object |\r\n| `coupon` | string | Order Disccount Coupon |\r\n| `id` | string |  Object ID, expected value \"marketingData\" |\r\n| `marketingTags` | object | Marketing Tags Array |\r\n| `utmCampaign` | string | UTM Campaign Parameters |\r\n| `utmMedium` | string | UTM Medium Parameters |\r\n| `utmPartner` | string | UTM Source Parameters |\r\n| `utmSource` | string | UTM Source Parameters|\r\n| `utmiCampaign` | string | UTMI Campaign Internal Parameters |\r\n| `utmiPart` | string | UTMI Part Internal Parameters |\r\n| `utmipage` | string | UTMI Page Internal Parameters |\r\n| `marketplace` | object | Marketplace Details Object |\r\n| `baseURL` | string | Marketplace Base URL |\r\n| `isCertified` | string | If is a Certified Marketplace |\r\n| `name` | string | Marketplace Name |\r\n| `marketplaceItems` | object | Marketplace Details Object |\r\n| `marketplaceOrderId` | string | Marketplace Order Id |\r\n| `marketplaceServicesEndpoint` | string | Marketplace Services Endpoint |\r\n| `merchantName` | string | Merchant Name |\r\n| `openTextField` | object | Open Text Field Object |\r\n| `value` | string | Open Text Field Value |\r\n| `orderFormId` | string | Order Form Id |\r\n| `orderGroup` | string | Order Group Id |\r\n| `orderId` | string | Order Id |\r\n| `origin` | string | Order Origin: \"Marketplace\", \"Fulfillment\", or \"Chain\" (for the third level in a [Multilevel Omnichannel Inventory](https://help.vtex.com/en/tutorial/multilevel-omnichannel-inventory--7M1xyCZWUyCB7PcjNtOyw4?&utm_source=autocomplete#) purchase). |\r\n| `packageAttachment` | object | Package Object |\r\n| `packages` | object | Packages Details Object, populated after order invoiced |\r\n| `cfop` | string | Fiscal code for operations and installments |\r\n| `courier` | string | Package selected Courier |\r\n| `courierStatus` | string | Package Tracking Status |\r\n| `data` | object | Package Tracking Timeline |\r\n| `finished` | string | If the delivery are finished |\r\n| `status` | string | Courier Status |\r\n| `embeddedInvoice` | string | XML of the invoice |\r\n| `invoiceKey` | string | Invoice Credencial Key |\r\n| `invoiceNumber` | string | Package Invoice Number |\r\n| `invoiceUrl` | string | Package Invoice URL |\r\n| `invoiceValue` | string | Package Invoice Value |\r\n| `issuanceDate` | string | Package Issuance Date |\r\n| `items` | string | Items Package Array |\r\n| `description` | string | Item Desciprtion |\r\n| `itemIndex` | string | Item Index |\r\n| `price` | string | Item Price |\r\n| `quantity` | string | Item Quantity |\r\n| `unitMultiplier` | string | Unit Multiplier |\r\n| `trackingNumber` | string | Package Tracking Number |\r\n| `trackingUrl` | string | Tracking Order URL |\r\n| `type` | string | Invoice Type, expected values \"Output\" and \"Input\" |\r\n| `paymentData` | object | Payment Object |\r\n| `transactions` | object | Transactions Object |\r\n| `isActive` | boolean | If the payment is Active |\r\n| `merchantName` | string | Merchant Name|\r\n| `payments` | object | Payment Object |\r\n| `cardHolder` | string | Payment Card Holder |\r\n| `connectorResponses` | object | Connector Responses Object |\r\n| `billingAddress` | object | Billing Address information |\r\n| `Message` | string | Connector Responses Message |\r\n| `ReturnCode` | string | Connector Return Code |\r\n| `Tid` | string | Connector Transaction ID |\r\n| `acquirer` | string | Connector acquirer |\r\n| `authId` | string | Connector authorization ID |\r\n| `dueDate` | string | Payment due date |\r\n| `firstDigits` | string | Payment card first digits |\r\n| `giftCardCaption` | string | Gift card caption |\r\n| `giftCardId` | string | Gift card ID |\r\n| `giftCardName` | string | Gift card name |\r\n| `group` | string | Payment group |\r\n| `id` | string | Payment ID |\r\n| `installments` | string | Payment installments quantity |\r\n| `lastDigits` | string | Payment card last digits |\r\n| `paymentSystem` | string | Payment system type ID |\r\n| `paymentSystemName` | string | Payment system name |\r\n| `redemptionCode` | string | Gift card redemption code |\r\n| `referenceValue` | string | Payment reference value |\r\n| `tid` | string | Payment transaction ID |\r\n| `url` | string | Payment URL |\r\n| `value` | string | Payment value with interest if it applies |\r\n| `transactionId` | string | Transaction Id |\r\n| `ratesAndBenefitsData` | string | Rates and Benefits Data Object |\r\n| `id` | string |  Object ID, expected value \"ratesAndBenefitsData\" |\r\n| `rateAndBenefitsIdentifiers` | object | Rates and Benefits Details Object |\r\n| `additionalInfo` | string |  Rates and Benefits Additional Info |\r\n| `description` | string | Rates and Benefits Description |\r\n| `featured` | string |  If is allowed to acumulate the Rates and Benefits |\r\n| `matchedParameters` | object | March Parameters Array |\r\n| `name` | string |  Rates and Benefits Name |\r\n| `roundingError` | integer | Rounding Error Total Amount  |\r\n| `salesChannel` | string | Order Sales Channel Id |\r\n| `sellerOrderId` | string | Order Seller Id |\r\n| `sellers` | object | Sellers Array |\r\n| `id` | string | Seller Id |\r\n| `logo` | string | URL Seller Logo |\r\n| `name` | string | Seller Name |\r\n| `sequence` | string | Order Sequence ID |\r\n| `shippingData` | object | Shipping Data Object |\r\n| `address` | object | Shipping Address |\r\n| `addressId` | string | Shipping Address Id |\r\n| `addressType` | string | Shipping Address Type |\r\n| `city` | string | Shipping City |\r\n| `complement` | string | Shipping Complement |\r\n| `country` | string | Shipping Country in ISO 3166 ALPHA-3 abbreviation  |\r\n| `geoCoordinates` | object | Shipping Geo Coordinates Array |\r\n| `neighborhood` | string | Shipping Neighborhood |\r\n| `number` | string | Shipping Number |\r\n| `postalCode` | string | Shipping Postal Code |\r\n| `receiverName` | string | Shipping Receiver Name |\r\n| `reference` | string | Shipping Reference |\r\n| `state` | string | Shipping State |\r\n| `street` | string | Shipping Street |\r\n| `id` | string | Object ID, expected value \"shippingData\"|\r\n| `logisticsInfo` | object | Logistics Info Object |\r\n| `addressId` | string | Adress Id |\r\n| `deliveryChannel` | string | Delivery Channel, allowed values \"delivery\" or \"pickup-in-point\" |\r\n| `deliveryCompany` | string | Courier Company Name |\r\n| `deliveryIds` | object | Delivery Ids Object |\r\n| `courierId` | string | Courier Id |\r\n| `courierName` | string | Courier Name |\r\n| `dockId` | string | Releated Dock Id |\r\n| `quantity` | integer | Items Quantity |\r\n| `warehouseId` | string | Releated Warehouse Id |\r\n| `deliveryWindow` | object | Delivery Window Object |\r\n| `endDateUtc` | string | Delivery Date End in UTC  |\r\n| `price` | string | Delivery Window Cost |\r\n| `startDateUtc` | string | Delivery Date Starts in UTC |\r\n| `itemIndex` | integer | Logistic Info Item Index |\r\n| `listPrice` | integer | Logistic Info Item List Price |\r\n| `lockTTL` | string | Stock reservation waiting period |\r\n| `pickupStoreInfo` | object | Pickup Store Info Object |\r\n| `additionalInfo` | string | Pickup Store Additional Info |\r\n| `address` | string | Pickup Store Address |\r\n| `dockId` | string | Pickup Store Releated Dock Id |\r\n| `friendlyName` | string | Pickup Store Friendly Name |\r\n| `isPickupStore` | boolean | If is a Pickup Store |\r\n| `polygonName` | string | Releated Polygom Name |\r\n| `price` | integer | Logistic Info Item Price |\r\n| `selectedSla` | string | Selected SLA |\r\n| `sellingPrice` | integer | Logistic Info Item Selling Price |\r\n| `shippingEstimate` | string | Estimate Shipping Duration |\r\n| `shippingEstimateDate` | string | Estimate Shipping Date |\r\n| `shipsTo` | object | Shipping Country in ISO 3166 ALPHA-3 abbreviation |\r\n| `slas` | object | SLAs Object |\r\n| `deliveryChannel` | string | Delivery Channel, allowed values \"delivery\" or \"pickup-in-point\" |\r\n| `deliveryWindow` | object | Delivery Window Object |\r\n| `endDateUtc` | string | Delivery Date End in UTC  |\r\n| `price` | string | Delivery Window Cost |\r\n| `startDateUtc` | string | Delivery Date Starts in UTC |\r\n| `id` | string | SLA Id |\r\n| `pickupStoreInfo` | object | Pickup Store Details Object |\r\n| `additionalInfo` | string | Pickup Store Additional Info |\r\n| `address` | string | Pickup Store Address |\r\n| `dockId` | string | Pickup Store releated Dock Id  |\r\n| `friendlyName` | string | Pickup Store Friendly Name |\r\n| `isPickupStore` | boolean | If is a Pickup Store |\r\n| `polygonName` | string | Releated Polygon Name |\r\n| `price` | integer | SLA Price |\r\n| `shippingEstimate` | string | SLA Shipping Estimate |\r\n| `selectedAddresses` | object | Selected Address Details Object |\r\n| `addressId` | string | Shipping Address Id |\r\n| `addressType` | string | Shipping Address Type |\r\n| `city` | string | Shipping City |\r\n| `complement` | string | Shipping Complement |\r\n| `country` | string | Shipping Country in ISO 3166 ALPHA-3 abbreviation  |\r\n| `geoCoordinates` | object | Shipping Geo Coordinates Array |\r\n| `neighborhood` | string | Shipping Neighborhood |\r\n| `number` | string | Shipping Number |\r\n| `postalCode` | string | Shipping Postal Code |\r\n| `receiverName` | string | Shipping Receiver Name |\r\n| `reference` | string | Shipping Reference |\r\n| `state` | string | Shipping State |\r\n| `street` | string | Shipping Street |\r\n| `trackingHints` | array | Array of tracking hint objects, containing `\"courierName\"`, `\"trackingId\"`, `\"trackingLabel\"`, and `\"trackingUrl\"` |\r\n| `status` | string | Order Status |\r\n| `statusDescription` | string | Status Description |\r\n| `storePreferencesData` | object | Store Preferences Data Object |\r\n| `countryCode` | string | Country Code in ISO 3166 ALPHA-3 abbreviation |\r\n| `currencyCode` | string | Currency Code in ISO 4217  |\r\n| `currencyFormatInfo` | object | Currency Format Info Object |\r\n| `CurrencyDecimalDigits` | integer | Currency Decimal Digits |\r\n| `CurrencyDecimalSeparator` | string | Currency Decimal Separator |\r\n| `CurrencyGroupSeparator` | string | Currency Group Separator |\r\n| `CurrencyGroupSize` | integer | Currency Group Size |\r\n| `StartsWithCurrencySymbol` | boolean | If Starts With Currency Symbol |\r\n| `currencyLocale` | integer | LCID Decimal |\r\n| `currencySymbol` | string | Currency Symbol |\r\n| `timeZone` | string | Order Time Zone |\r\n| `totals` | object | Totals Object |\r\n| `id` | string | Totals Ids, expected values: \"Items\", \"Discounts\", \"Shipping\" and \"Tax\" |\r\n| `name` | string | Totals ID Description |\r\n| `value` | integer | Totals Value |\r\n| `value` | integer | Order Value |\r\n","operationId":"GetOrder2","parameters":[{"$ref":"#/components/parameters/Content-Type"},{"$ref":"#/components/parameters/Accept"},{"$ref":"#/components/parameters/orderId"},{"$ref":"#/components/parameters/reason"}],"responses":{"200":{"content":{"application/json":{"example":{"affiliateId":"","allowCancellation":false,"allowEdition":false,"approvedBy":null,"authorizedDate":"2025-08-15T13:51:41.147Z","callCenterOperatorData":null,"cancelReason":null,"cancelledBy":null,"changesAttachment":{"changesData":[{"discountValue":3290,"incrementValue":0,"itemsAdded":[],"itemsRemoved":[{"id":"1234568358","name":"Bay Max L","price":3290,"quantity":1,"unitMultiplier":null}],"reason":"Blah","receipt":{"date":"2025-08-15T13:51:41.147Z","orderId":"v5195004lux-01","receipt":"029f9ab8-751a-4b1e-bf81-7dd25d14b49b"}}],"id":"changeAttachment"},"clientProfileData":{"corporateDocument":null,"corporateName":null,"corporatePhone":null,"customerClass":null,"document":"11047867702","documentType":"cpf","email":"rodrigo.cunha@vtex.com.br","firstName":"Rodrigo","id":"clientProfileData","isCorporate":false,"lastName":"VTEX","phone":"+5521972321094","stateInscription":null,"tradeName":null,"userProfileId":"5a3692de-358a-4bea-8885-044bce33bb93"},"commercialConditionData":null,"creationDate":"2025-08-15T13:51:41.147Z","customData":null,"emailTracked":"a27499cad31f42b7a771ae34f57c8358@ct.vtex.com.br","followUpEmail":"7bf3a59bbc56402c810bda9521ba449e@ct.vtex.com.br","giftRegistryData":null,"hostname":"luxstore","invoiceData":null,"invoicedDate":null,"isCheckedIn":false,"isCompleted":true,"items":[{"additionalInfo":{"brandId":"2000023","brandName":"VTEX","categoriesIds":"/1/","commercialConditionId":"5","dimension":{"cubicweight":0.7031,"height":15,"length":15,"weight":15,"width":15},"offeringInfo":null,"offeringType":null,"offeringTypeId":null,"productClusterId":"135,142"},"attachments":[],"bundleItems":[],"commission":0,"components":[],"detailUrl":"/bay-max-9429485/p","ean":null,"freightCommission":0,"id":"1234568358","imageUrl":"http://luxstore.vteximg.com.br/arquivos/ids/159263-55-55/image-cc1aed75cbfa424a85a94900be3eacec.jpg?v=636795432619830000","isGift":false,"itemAttachment":{"content":{},"name":null},"listPrice":3290,"lockId":"00-v5195004lux-01","manualPrice":null,"measurementUnit":"un","name":"Bay Max L","offerings":[],"params":[],"parentAssemblyBinding":null,"parentItemIndex":null,"preSaleDate":null,"price":3290,"priceDefinitions":null,"priceTags":[],"priceValidUntil":null,"productId":"9429485","quantity":1,"refId":"BIGHEROBML","rewardValue":0,"seller":"1","sellerSku":"1234568358","sellingPrice":3290,"shippingPrice":null,"tax":0,"taxCode":null,"uniqueId":"87F0945396994B349158C7D9C9941442","unitMultiplier":1}],"lastChange":"2025-08-15T13:51:41.147Z","lastMessage":null,"marketingData":null,"marketplace":{"baseURL":"http://oms.vtexinternal.com.br/api/oms?an=luxstore","isCertified":null,"name":"luxstore"},"marketplaceItems":[],"marketplaceOrderId":"","marketplaceServicesEndpoint":"http://oms.vtexinternal.com.br/api/oms?an=luxstore","merchantName":null,"openTextField":null,"orderFormId":"caae7471333e403f959fa5fd66951340","orderGroup":null,"orderId":"v5195004lux-01","origin":"Marketplace","packageAttachment":{"packages":[]},"paymentData":{"transactions":[{"isActive":true,"merchantName":"luxstore","payments":[{"cardHolder":null,"connectorResponses":{},"dueDate":"2025-08-15T13:51:41.147Z","firstDigits":null,"giftCardCaption":null,"giftCardId":null,"giftCardName":null,"group":"bankInvoice","id":"D3DEECAB3C6C4B9EAF8EF4C1FE062FF3","installments":1,"lastDigits":null,"paymentSystem":"6","paymentSystemName":"Boleto Bancário","redemptionCode":null,"referenceValue":4450,"tid":null,"url":"https://luxstore.vtexpayments.com.br:443/BankIssuedInvoice/Transaction/418213DE29634837A63DD693A937A696/Payment/D3DEECAB3C6C4B9EAF8EF4C1FE062FF3/Installment/{Installment}","value":4450}],"transactionId":"418213DE29634837A63DD693A937A696"}]},"ratesAndBenefitsData":{"id":"ratesAndBenefitsData","rateAndBenefitsIdentifiers":[]},"roundingError":0,"salesChannel":"1","sellerOrderId":"00-v5195004lux-01","sellers":[{"id":"1","logo":"","name":"Loja do Suporte"}],"sequence":"502556","shippingData":{"address":{"addressId":"-1425945657910","addressType":"residential","city":"Rio de Janeiro","complement":"3","country":"BRA","geoCoordinates":[],"neighborhood":"Botafogo","number":"300","postalCode":"22250-040","receiverName":"Rodrigo Cunha","reference":null,"state":"RJ","street":"Praia de Botafogo"},"id":"shippingData","logisticsInfo":[{"addressId":"-1425945657910","deliveryChannel":"delivery","deliveryCompany":"Todos os CEPS","deliveryIds":[{"courierId":"197a56f","courierName":"Todos os CEPS","dockId":"1","quantity":1,"warehouseId":11}],"deliveryWindow":null,"itemIndex":0,"listPrice":1160,"lockTTL":"10d","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"selectedSla":"Normal","sellingPrice":1160,"shippingEstimate":"5bd","shippingEstimateDate":"2025-08-15T13:51:41.147Z","shipsTo":["BRA"],"slas":[{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Normal","name":"Normal","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"shippingEstimate":"5bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Expressa","name":"Expressa","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"shippingEstimate":"5bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Quebra Kit","name":"Quebra Kit","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1392,"shippingEstimate":"2bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Sob Encomenda","name":"Sob Encomenda","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1392,"shippingEstimate":"32bd"}]}],"selectedAddresses":[{"addressId":"-1425945657910","addressType":"residential","city":"Rio de Janeiro","complement":"10","country":"BRA","geoCoordinates":[],"neighborhood":"Botafogo","number":"518","postalCode":"22250-040","receiverName":"Rodrigo Cunha","reference":null,"state":"RJ","street":"Praia de Botafogo"}],"trackingHints":null},"status":"handling","statusDescription":"Preparando Entrega","storePreferencesData":{"countryCode":"BRA","currencyCode":"BRL","currencyFormatInfo":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":",","CurrencyGroupSeparator":".","CurrencyGroupSize":3,"StartsWithCurrencySymbol":true},"currencyLocale":1046,"currencySymbol":"R$","timeZone":"E. South America Standard Time"},"totals":[{"id":"Items","name":"Total dos Itens","value":3290},{"id":"Discounts","name":"Total dos Descontos","value":0},{"id":"Shipping","name":"Total do Frete","value":1160},{"id":"Tax","name":"Total da Taxa","value":0},{"id":"Change","name":"Total das mudanças","value":-3290}],"value":1160},"schema":{"example":{"affiliateId":"","allowCancellation":false,"allowEdition":false,"approvedBy":null,"authorizedDate":"2025-08-15T13:51:41.147Z","callCenterOperatorData":null,"cancelReason":null,"cancelledBy":null,"changesAttachment":{"changesData":[{"discountValue":3290,"incrementValue":0,"itemsAdded":[],"itemsRemoved":[{"id":"1234568358","name":"Bay Max L","price":3290,"quantity":1,"unitMultiplier":null}],"reason":"Blah","receipt":{"date":"2025-08-15T13:51:41.147Z","orderId":"v5195004lux-01","receipt":"029f9ab8-751a-4b1e-bf81-7dd25d14b49b"}}],"id":"changeAttachment"},"clientProfileData":{"corporateDocument":null,"corporateName":null,"corporatePhone":null,"customerClass":null,"document":"11047867702","documentType":"cpf","email":"rodrigo.cunha@vtex.com.br","firstName":"Rodrigo","id":"clientProfileData","isCorporate":false,"lastName":"VTEX","phone":"+5521972321094","stateInscription":null,"tradeName":null,"userProfileId":"5a3692de-358a-4bea-8885-044bce33bb93"},"commercialConditionData":null,"creationDate":"2025-08-15T13:51:41.147Z","customData":null,"emailTracked":"a27499cad31f42b7a771ae34f57c8358@ct.vtex.com.br","followUpEmail":"7bf3a59bbc56402c810bda9521ba449e@ct.vtex.com.br","giftRegistryData":null,"hostname":"luxstore","invoiceData":null,"invoicedDate":null,"isCheckedIn":false,"isCompleted":true,"items":[{"additionalInfo":{"brandId":"2000023","brandName":"VTEX","categoriesIds":"/1/","commercialConditionId":"5","dimension":{"cubicweight":0.7031,"height":15,"length":15,"weight":15,"width":15},"offeringInfo":null,"offeringType":null,"offeringTypeId":null,"productClusterId":"135,142"},"attachments":[],"bundleItems":[],"commission":0,"components":[],"detailUrl":"/bay-max-9429485/p","ean":null,"freightCommission":0,"id":"1234568358","imageUrl":"http://luxstore.vteximg.com.br/arquivos/ids/159263-55-55/image-cc1aed75cbfa424a85a94900be3eacec.jpg?v=636795432619830000","isGift":false,"itemAttachment":{"content":{},"name":null},"listPrice":3290,"lockId":"00-v5195004lux-01","manualPrice":null,"measurementUnit":"un","name":"Bay Max L","offerings":[],"params":[],"parentAssemblyBinding":null,"parentItemIndex":null,"preSaleDate":null,"price":3290,"priceDefinitions":null,"priceTags":[],"priceValidUntil":null,"productId":"9429485","quantity":1,"refId":"BIGHEROBML","rewardValue":0,"seller":"1","sellerSku":"1234568358","sellingPrice":3290,"shippingPrice":null,"tax":0,"taxCode":null,"uniqueId":"87F0945396994B349158C7D9C9941442","unitMultiplier":1}],"lastChange":"2025-08-15T13:51:41.147Z","lastMessage":null,"marketingData":null,"marketplace":{"baseURL":"http://oms.vtexinternal.com.br/api/oms?an=luxstore","isCertified":null,"name":"luxstore"},"marketplaceItems":[],"marketplaceOrderId":"","marketplaceServicesEndpoint":"http://oms.vtexinternal.com.br/api/oms?an=luxstore","merchantName":null,"openTextField":null,"orderFormId":"caae7471333e403f959fa5fd66951340","orderGroup":null,"orderId":"v5195004lux-01","origin":"Marketplace","packageAttachment":{"packages":[]},"paymentData":{"transactions":[{"isActive":true,"merchantName":"luxstore","payments":[{"cardHolder":null,"cardNumber":null,"connectorResponses":{},"cvv2":null,"dueDate":"2025-08-15T13:51:41.147Z","expireMonth":null,"expireYear":null,"firstDigits":null,"giftCardCaption":null,"giftCardId":null,"giftCardName":null,"group":"bankInvoice","id":"D3DEECAB3C6C4B9EAF8EF4C1FE062FF3","installments":1,"lastDigits":null,"paymentSystem":"6","paymentSystemName":"Boleto Bancário","redemptionCode":null,"referenceValue":4450,"tid":null,"url":"https://luxstore.vtexpayments.com.br:443/BankIssuedInvoice/Transaction/418213DE29634837A63DD693A937A696/Payment/D3DEECAB3C6C4B9EAF8EF4C1FE062FF3/Installment/{Installment}","value":4450}],"transactionId":"418213DE29634837A63DD693A937A696"}]},"ratesAndBenefitsData":{"id":"ratesAndBenefitsData","rateAndBenefitsIdentifiers":[]},"roundingError":0,"salesChannel":"1","sellerOrderId":"00-v5195004lux-01","sellers":[{"id":"1","logo":"","name":"Loja do Suporte"}],"sequence":"502556","shippingData":{"address":{"addressId":"-1425945657910","addressType":"residential","city":"Rio de Janeiro","complement":"3","country":"BRA","geoCoordinates":[],"neighborhood":"Botafogo","number":"300","postalCode":"22250-040","receiverName":"Rodrigo Cunha","reference":null,"state":"RJ","street":"Praia de Botafogo"},"id":"shippingData","logisticsInfo":[{"addressId":"-1425945657910","deliveryChannel":"delivery","deliveryCompany":"Todos os CEPS","deliveryIds":[{"courierId":"197a56f","courierName":"Todos os CEPS","dockId":"1","quantity":1,"warehouseId":11}],"deliveryWindow":null,"itemIndex":0,"listPrice":1160,"lockTTL":"10d","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"selectedSla":"Normal","sellingPrice":1160,"shippingEstimate":"5bd","shippingEstimateDate":"2025-08-15T13:51:41.147Z","shipsTo":["BRA"],"slas":[{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Normal","name":"Normal","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"shippingEstimate":"5bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Expressa","name":"Expressa","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"shippingEstimate":"5bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Quebra Kit","name":"Quebra Kit","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1392,"shippingEstimate":"2bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Sob Encomenda","name":"Sob Encomenda","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1392,"shippingEstimate":"32bd"}]}],"selectedAddresses":[{"addressId":"-1425945657910","addressType":"residential","city":"Rio de Janeiro","complement":"10","country":"BRA","geoCoordinates":[],"neighborhood":"Botafogo","number":"518","postalCode":"22250-040","receiverName":"Rodrigo Cunha","reference":null,"state":"RJ","street":"Praia de Botafogo"}],"trackingHints":null},"status":"handling","statusDescription":"Preparando Entrega","storePreferencesData":{"countryCode":"BRA","currencyCode":"BRL","currencyFormatInfo":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":",","CurrencyGroupSeparator":".","CurrencyGroupSize":3,"StartsWithCurrencySymbol":true},"currencyLocale":1046,"currencySymbol":"R$","timeZone":"E. South America Standard Time"},"totals":[{"id":"Items","name":"Total dos Itens","value":3290},{"id":"Discounts","name":"Total dos Descontos","value":0},{"id":"Shipping","name":"Total do Frete","value":1160},{"id":"Tax","name":"Total da Taxa","value":0},{"id":"Change","name":"Total das mudanças","value":-3290}],"value":1160},"properties":{"affiliateId":{"description":"Three letter code identifying the marketplace where the order was placed.","example":"ABC","type":"string"},"allowCancellation":{"description":"Indicates whether cancelation is allowed for the order.","type":"boolean"},"allowEdition":{"description":"Indicates whether edition is allowed for the order.","type":"boolean"},"approvedBy":{"description":"User that approved the order, in case of manual approval.","example":"alex@store.com","type":"string"},"authorizedDate":{"description":"Date in which the order was authorized in UTC.","type":"string"},"callCenterOperatorData":{"description":"Call center operator data.","nullable":true,"type":"string"},"cancelReason":{"description":"Reason for cancelation.","example":"Stock shortage.","type":"string"},"cancelledBy":{"description":"User that canceled the order.","example":"alex@store.com","type":"string"},"changesAttachment":{"$ref":"#/components/schemas/ChangesAttachment"},"clientProfileData":{"$ref":"#/components/schemas/ClientProfileData"},"commercialConditionData":{"description":"Commercial condition data.","nullable":true,"type":"string"},"creationDate":{"description":"Creation date.","example":"2025-08-15T13:51:41.147Z","type":"string"},"customData":{"description":"Custom data.","nullable":true,"type":"string"},"emailTracked":{"description":"Email tracked.","example":"clark.kent@example.com","type":"string"},"followUpEmail":{"description":"Follow up email.","type":"string"},"giftRegistryData":{"description":"Gift registry data.","nullable":true,"type":"string"},"hostname":{"description":"Host name.","type":"string"},"invoiceData":{"description":"Information pertinent to the order's invoice.","nullable":true,"type":"object"},"invoicedDate":{"description":"Date in which the order was invoiced in UTC.","type":"string"},"isCheckedIn":{"description":"Indicates whether client is checked in.","type":"boolean"},"isCompleted":{"description":"Indicates whether order is completed.","type":"boolean"},"items":{"description":"Information on each item in the order.","items":{"properties":{"additionalInfo":{"description":"Additional information.","properties":{"brandId":{"description":"Brand ID.","type":"string"},"brandName":{"description":"Brand name.","type":"string"},"dimension":{"description":"Dimension.","type":"string"},"offeringInfo":{"description":"Offering information.","type":"string"},"offeringType":{"description":"Offering type.","type":"string"},"offeringTypeId":{"description":"Offering type ID.","type":"string"}},"type":"object"},"attachments":{"description":"Array containing information on attachments.","items":{"type":"string"},"type":"array"},"availability":{"description":"Availability","type":"string"},"bundleItems":{"description":"Information on services sold along with the SKU. Example: a gift package.","items":{"properties":{"id":{"description":"Service identifier.","type":"integer"},"name":{"description":"Name.","type":"string"},"price":{"description":"Price in cents.","type":"integer"},"type":{"description":"Type","type":"string"}},"type":"object"},"type":"array"},"detailUrl":{"description":"Detail URL.","type":"string"},"ean":{"description":"European Article Number.","type":"string"},"id":{"description":"ID.","type":"string"},"imageUrl":{"description":"Image URL.","type":"string"},"isGift":{"description":"Indicates whether item is a gift.","type":"boolean"},"listPrice":{"description":"List price in cents.","type":"integer"},"manualPrice":{"description":"Manual price in cents.","type":"integer"},"manualPriceAppliedBy":{"description":"User that applied the manual price, if that is the case.","type":"string"},"manufacturerCode":{"description":"Manufacturer code.","type":"string"},"measurementUnit":{"description":"Measurement unit","type":"string"},"modalType":{"description":"Modal type.","type":"string"},"name":{"description":"Name.","type":"string"},"parentAssemblyBinding":{"description":"Parent assembly binding.","type":"string"},"parentItemIndex":{"description":"Parent item index.","type":"integer"},"preSaleDate":{"description":"Presale date.","type":"string"},"price":{"description":"Price in cents.","type":"integer"},"priceDefinition":{"description":"Price information.","properties":{"calculatedSellingPrice":{"description":"Calculated selling price in cents.","type":"integer"},"sellingPrices":{"description":"Selling prices.","items":{"properties":{"quantity":{"description":"Quantity.","type":"integer"},"value":{"description":"Value in cents.","type":"integer"}},"type":"object"},"type":"array"},"total":{"description":"Total in cents.","type":"integer"}},"type":"object"},"priceTags":{"description":"Array of price tags, each of which, modifies the price in some way, like discounts or rates that apply to the item in the context of the order.","items":{"properties":{"identifier":{"description":"Price tag identifier.","type":"string"},"isPercentual":{"description":"Indicates whether price tag value is applied through a percentage.","type":"boolean"},"name":{"description":"Name.","type":"string"},"rawValue":{"description":"Raw value.","type":"integer"},"value":{"description":"Value.","type":"integer"}},"type":"object"},"type":"array"},"priceValidUntil":{"description":"Price expiration date and time.","type":"string"},"productCategories":{"description":"Object, where each field is an ID from `productCategoryIds.","properties":{"{ID}":{"description":"Product category corresponding to the ID in the field key.","type":"string"}},"type":"object"},"productCategoryIds":{"description":"Product category IDs.","type":"string"},"productId":{"description":"Product ID.","type":"string"},"productRefId":{"description":"Product Ref ID.","type":"string"},"quantity":{"description":"Quantity.","type":"integer"},"refId":{"description":"Ref ID.","type":"string"},"rewardValue":{"description":"Reward value in cents.","type":"integer"},"seller":{"description":"Seller.","type":"string"},"sellerChain":{"description":"Sellers involved in the chain. The list should contain only one seller, unless it is a [Multilevel Omnichannel Inventory](https://help.vtex.com/pt/tutorial/multilevel-omnichannel-inventory--7M1xyCZWUyCB7PcjNtOyw4) order.","items":{"description":"Seller.","type":"string"},"type":"array"},"sellingPrice":{"description":"Selling price in cents. Note that this field may be subject to rounding discrepancies. We recommend retrieving data from the `priceDefinition` data structure instead.","type":"integer"},"skuName":{"description":"SKU name.","type":"string"},"tax":{"description":"Tax value in cents.","type":"integer"},"uniqueId":{"description":"Order's item unique ID.","type":"string"},"unitMultiplier":{"description":"Unit multiplier","type":"integer"}},"type":"object"},"type":"array"},"lastChange":{"description":"Date of last change.","example":"2025-08-15T13:51:41.148Z","type":"string"},"lastMessage":{"description":"Last message.","nullable":true,"type":"string"},"marketingData":{"description":"Marketing data.","nullable":true,"type":"string"},"marketplace":{"$ref":"#/components/schemas/Marketplace"},"marketplaceItems":{"description":"Marketplace items.","items":{"type":"string"},"type":"array"},"marketplaceOrderId":{"description":"ID of the order in the marketplace.","example":"ABC-v5195004lux-01","type":"string"},"marketplaceServicesEndpoint":{"description":"Marketplace endpoint for post purchase communication.","example":"http://oms.vtexinternal.com.br/api/oms?an=luxstore","type":"string"},"merchantName":{"description":"Merchant name.","example":"luxstore","type":"string"},"openTextField":{"description":"Open text field.","nullable":true,"type":"string"},"orderFormId":{"description":"ID of the shopping cart from which the order was created.","type":"string"},"orderGroup":{"description":"Order group.","example":"00","type":"string"},"orderId":{"description":"Order ID.","example":"v5195004lux-01","type":"string"},"origin":{"description":"Origin.","example":"Marketplace","type":"string"},"packageAttachment":{"description":"Package attachment.","example":{"packages":[]},"properties":{"packages":{"description":"Information on each package.","items":{"properties":{"cfop":{"description":"Fiscal operation code.","type":"string"},"courier":{"description":"Courier.","type":"string"},"courierStatus":{"description":"Courier status.","type":"string"},"embeddedInvoice":{"description":"Embedded voice in XML.","type":"string"},"invoiceKey":{"description":"Invoice key.","type":"string"},"invoiceNumber":{"description":"Invoice number.","type":"string"},"invoiceUrl":{"description":"Invoice URL.","type":"string"},"invoiceValue":{"description":"Invoice value in cents.","type":"integer"},"issuanceDate":{"description":"Issuance date.","type":"string"},"items":{"description":"Information on each item in the package.","items":{"properties":{"description":{"description":"Item description.","type":"string"},"itemIndex":{"description":"Item index in reference to the position of the item in the `items` array.","type":"integer"},"price":{"description":"Item price in cents.","type":"integer"},"quantity":{"description":"Item quantity.","type":"integer"},"unitMultiplier":{"description":"Item unit multiplier.","type":"number"}},"type":"object"},"type":"array"},"restitutions":{"description":"Information on how restitutions are to be made to the customer, in case of a return (invoice `type` is `input`).","properties":{"refund":{"description":"Information on refunds.","properties":{"items":{"description":"Information on items.","items":{"properties":{"itemIndex":{"description":"Item index corresponding to the position of the item in the main `items` array.","type":"string"},"quantity":{"description":"Quantity.","type":"integer"}},"type":"object"},"type":"array"}},"type":"object"}},"type":"object"},"trackingNumber":{"description":"Tracking number.","type":"string"},"trackingUrl":{"description":"Tracking URL.","type":"string"},"type":{"description":"Invoice type `Output` for sales and `Input` for returns.","type":"string"},"volumes":{"description":"Quantity of packages involved in the order.","type":"integer"}},"type":"object"},"type":"array"}},"type":"object"},"paymentData":{"$ref":"#/components/schemas/PaymentData"},"ratesAndBenefitsData":{"$ref":"#/components/schemas/RatesAndBenefitsData"},"roundingError":{"description":"Rounding error in cents.","format":"int32","type":"integer"},"salesChannel":{"description":"Sales channel.","example":"1","type":"string"},"sellerOrderId":{"description":"Seller order ID.","example":"00-v5195004lux-01","type":"string"},"sellers":{"description":"Array with sellers information.","items":{"$ref":"#/components/schemas/Seller"},"type":"array"},"sequence":{"description":"Sequence number.","example":"502556","type":"string"},"shippingData":{"$ref":"#/components/schemas/ShippingData"},"status":{"description":"Status in the order workflow.","example":"invoiced","type":"string"},"statusDescription":{"description":"Status description which is displayed on the Admin panel.","example":"Faturado","type":"string"},"storePreferencesData":{"$ref":"#/components/schemas/StorePreferencesData"},"totals":{"description":"Information on each of the order's totals.","items":{"properties":{"id":{"description":"Order's total ID.","example":"Discounts","type":"string"},"name":{"description":"Order's total name.","example":"Discount total.","type":"string"},"value":{"description":"Order's total value.","example":199,"format":"int32","type":"integer"}},"type":"object"},"type":"array"},"value":{"description":"Value in cents.","example":2499,"format":"int32","type":"integer"}},"title":"","type":"object"}}},"description":"OK"}},"summary":"Get order","tags":["Orders"]}},"/api/orders/pvt/document/{orderId}/actions/start-handling":{"post":{"deprecated":false,"description":"Change the status of an order to indicate that is is in `handling`.\n\r\n\r> Expect a `status 204` response with no content in case of a successful request.\n\r\n\r> The `Change order workflow status` resource is needed to use this API request. This is included in `OMS - Full access` and `IntegrationProfile - Fulfillment Oms`, among other default roles available in the Admin. Learn more about the [License manager roles and resources](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#).","operationId":"StartHandling2","parameters":[{"$ref":"#/components/parameters/Content-Type"},{"$ref":"#/components/parameters/Accept"},{"$ref":"#/components/parameters/orderId"}],"responses":{"204":{"description":"No content"},"403":{"description":"Forbidden"},"404":{"description":"Not found"},"429":{"description":"Too many requests"}},"summary":"Start handling order","tags":["Orders"]}},"/api/orders/pvt/document/{orderId}/cancel":{"post":{"deprecated":false,"description":"You should use this endpoint to cancel an order by its `orderId`.\n\nA common scenario is one where the seller has a problem with the order fulfillment and needs to request the order cancellation to the marketplace. To do this, the seller would need to make this request, passing the `orderId` in the URL.\n\nYou should expect a response with the date when the notification was received, the orderId, and a receipt protocol code.\n\nBe aware that if the order status is already `Invoiced`, the order can only be canceled if - before using this request - you send a return invoice through the [Order Invoice Notification endpoint](https://developers.vtex.com/reference/invoice#invoicenotification).\n\r\n\r> The `Cancel order` resource is needed to use this API request. This is included in `OMS - Full access` and `IntegrationProfile - Fulfillment Oms`, among other default roles available in the Admin. Learn more about the [License manager roles and resources](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#).","operationId":"CancelOrder2","parameters":[{"$ref":"#/components/parameters/Content-Type"},{"$ref":"#/components/parameters/Accept"},{"$ref":"#/components/parameters/orderId"}],"requestBody":{"content":{"application/json":{"schema":{"properties":{"reason":{"description":"Reason for cancelling the order.","example":"Unexpected stock shortage","type":"string"}},"type":"object"}}}},"responses":{"200":{"content":{"application/json":{"schema":{"example":{"date":"2025-08-15T13:51:41.148Z","orderId":"123543123","receipt":"38e0e47da2934847b489216d208cfd91"},"properties":{"date":{"description":"Date and time when the notification was received.","type":"string"},"orderId":{"description":"Identification of the order in the seller.","type":"string"},"receipt":{"description":"Protocol code generated by the update. It may be `null`.","type":"string"}},"type":"object"}}},"description":"OK"},"403":{"description":"The credentials are not enabled to access the service."},"404":{"description":"Value not found."},"429":{"description":"Too many requests."}},"summary":"Cancel order","tags":["Orders"]}},"/api/orders/pvt/document/{orderId}/invoices":{"post":{"deprecated":false,"description":"Once the order is invoiced, the seller should use this request to send the invoice information to the marketplace.\n\nWe strongly recommend that you always send the object of the invoiced items. With this practice, rounding errors will be avoided.\n\nIt is not allowed to use the same `invoiceNumber` in more than one request to the Order Invoice Notification endpoint.\n\nBe aware that this endpoint is also used by the seller to send the order tracking information. This, however, should be done in a separate moment, once the seller has the tracking information.\n\r\n\r> The `Notify invoice` resource is needed to use this API request. This is included in `OMS - Full access` and `IntegrationProfile - Fulfillment Oms`, among other default roles available in the Admin. Learn more about the [License manager roles and resources](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#).","operationId":"InvoiceNotification2","parameters":[{"$ref":"#/components/parameters/Content-Type"},{"$ref":"#/components/parameters/Accept"},{"$ref":"#/components/parameters/orderId"}],"requestBody":{"content":{"application/json":{"example":{"courier":null,"dispatchedDate":null,"invoiceKey":null,"invoiceNumber":"9999","invoiceUrl":null,"invoiceValue":"10000","issuanceDate":"2025-08-15T13:51:41.148Z","items":[{"id":"1234","price":10000,"quantity":1}],"trackingNumber":null,"trackingUrl":null,"type":"Output"},"schema":{"$ref":"#/components/schemas/InvoiceNotificationRequest"}}},"required":true},"responses":{"200":{"content":{"application/json":{"schema":{"example":{"date":"2025-08-15T13:51:41.148Z","orderId":"123543123","receipt":"38e0e47da2934847b489216d208cfd91"},"properties":{"date":{"description":"Date and time when the notification was received.","type":"string"},"orderId":{"description":"Identification of the order in the seller.","type":"string"},"receipt":{"description":"Protocol code generated by the update. It may be `null`.","type":"string"}},"type":"object"}}},"description":"OK"},"403":{"description":"Forbidden"},"404":{"description":"Not found"},"429":{"description":"Too many requests"}},"summary":"Order invoice notification","tags":["Invoice"]}},"/api/orders/pvt/document/{orderId}/payment/{paymentId}/notify-payment":{"post":{"deprecated":false,"description":"Send a payment notification of a given order, by order ID and payment ID.\n\r\n\r> The `Notify payment` resource is needed to use this API request. This is included in `OMS - Full access` and `IntegrationProfile - Fulfillment Oms`, among other default roles available in the Admin. Learn more about the [License manager roles and resources](https://help.vtex.com/en/tutorial/roles--7HKK5Uau2H6wxE1rH5oRbc#).\n\r\n\r> Learn more about [Transaction Details](https://help.vtex.com/en/tutorial/how-to-view-the-orders-details).\r\n\r\n\r\n## Request body properties\r\n\r\n| Attribute    | Type        | Description |\r\n| --------------- |:---------:| --------------------------------------:|\r\n| `orderId` | string | Order Id |\r\n| `paymentId` | string | Payment ID |","operationId":"SendPaymentNotification2","parameters":[{"$ref":"#/components/parameters/Content-Type"},{"$ref":"#/components/parameters/Accept"},{"$ref":"#/components/parameters/orderId"},{"$ref":"#/components/parameters/paymentId"}],"responses":{"200":{"description":"OK"},"400":{"description":"Bad Request"},"403":{"description":"Forbidden"},"404":{"description":"Not Found"},"429":{"description":"Too Many Requests"}},"summary":"Send payment notification","tags":["Payment"]}}},"components":{"parameters":{"Accept":{"description":"HTTP Client Negotiation _Accept_ Header. Indicates the types of responses the client can understand.","in":"header","name":"Accept","required":true,"schema":{"example":"application/json","type":"string"},"style":"simple"},"Content-Type":{"description":"Type of the content being sent.","in":"header","name":"Content-Type","required":true,"schema":{"example":"application/json","type":"string"},"style":"simple"},"f_hasInputInvoice":{"description":"Filters list to return only orders with non `null` values for the `invoiceInput` field.","explode":true,"in":"query","name":"f_hasInputInvoice","required":false,"schema":{"default":false,"type":"boolean"},"style":"form"},"orderId":{"description":"ID of the order.","in":"path","name":"orderId","required":true,"schema":{"example":"70caf3941s6df1","type":"string"},"style":"simple"},"paymentId":{"description":"ID of the payment.","in":"path","name":"paymentId","required":true,"schema":{"example":"45hsfg5jkyu1384jdsfgh654sfgj1","type":"string"},"style":"simple"},"reason":{"description":"Reason for requesting unmasked data.","in":"query","name":"reason","required":false,"schema":{"example":"data-validation","type":"string"},"style":"form"}},"schemas":{"Address":{"example":{"addressId":"-1425945657910","addressType":"residential","city":"Rio de Janeiro","complement":"3","country":"BRA","geoCoordinates":[],"neighborhood":"Botafogo","number":"300","postalCode":"22250-040","receiverName":"Rodrigo Cunha","reference":null,"state":"RJ","street":"Praia de Botafogo"},"properties":{"addressId":{"description":"Address ID.","type":"string"},"addressType":{"description":"Address type.","type":"string"},"city":{"description":"Address city.","type":"string"},"complement":{"description":"Address complement.","type":"string"},"country":{"description":"Address country.","type":"string"},"geoCoordinates":{"description":"Geolocation coordinates.","items":{"type":"string"},"type":"array"},"neighborhood":{"description":"Address neighborhood.","type":"string"},"number":{"description":"Address number.","type":"string"},"postalCode":{"description":"Address postal code.","type":"string"},"receiverName":{"description":"Address receiver name.","type":"string"},"reference":{"description":"Address reference.","nullable":true,"type":"string"},"state":{"description":"Address state.","type":"string"},"street":{"description":"Address street.","type":"string"}},"required":["addressType","receiverName","addressId","postalCode","city","state","country","street","number","neighborhood","complement","reference","geoCoordinates"],"title":"Address","type":"object"},"BRL":{"example":{"Count":84,"Facets":null,"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853},"properties":{"Count":{"description":"Count.","format":"int32","type":"integer"},"Facets":{"description":"Facets.","nullable":true,"type":"string"},"Max":{"description":"Maximum.","format":"int32","type":"integer"},"Mean":{"description":"Mean.","type":"number"},"Min":{"description":"Minimum.","format":"int32","type":"integer"},"Missing":{"description":"Missing.","format":"int32","type":"integer"},"StdDev":{"description":"Standard deviation.","type":"number"},"Sum":{"description":"Sum.","format":"int32","type":"integer"},"SumOfSquares":{"description":"Sum of squares.","format":"int64","type":"integer"}},"required":["Count","Max","Mean","Min","Missing","StdDev","Sum","SumOfSquares","Facets"],"title":"BRL","type":"object"},"BRL1":{"example":{"Count":84,"Facets":null,"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163},"properties":{"Count":{"description":"Count.","format":"int32","type":"integer"},"Facets":{"description":"Facets.","nullable":true,"type":"string"},"Max":{"description":"Maximum.","format":"int32","type":"integer"},"Mean":{"description":"Mean.","type":"number"},"Min":{"description":"Minimum.","format":"int32","type":"integer"},"Missing":{"description":"Missing.","format":"int32","type":"integer"},"StdDev":{"description":"Standard deviation.","type":"number"},"Sum":{"description":"Sum.","format":"int32","type":"integer"},"SumOfSquares":{"description":"Sum of squares.","format":"int64","type":"integer"}},"required":["Count","Max","Mean","Min","Missing","StdDev","Sum","SumOfSquares","Facets"],"title":"BRL1","type":"object"},"ChangesAttachment":{"example":{"changesData":[{"discountValue":3290,"incrementValue":0,"itemsAdded":[],"itemsRemoved":[{"id":"1234568358","name":"Bay Max L","price":3290,"quantity":1,"unitMultiplier":null}],"reason":"Blah","receipt":{"date":"2025-08-15T13:51:41.148Z","orderId":"v5195004lux-01","receipt":"029f9ab8-751a-4b1e-bf81-7dd25d14b49b"}}],"id":"changeAttachment"},"properties":{"changesData":{"description":"Array with data on order changes.","items":{"$ref":"#/components/schemas/ChangesDatum"},"type":"array"},"id":{"description":"Change ID.","type":"string"}},"required":["id","changesData"],"title":"ChangesAttachment","type":"object"},"ChangesDatum":{"example":{"discountValue":3290,"incrementValue":0,"itemsAdded":[],"itemsRemoved":[{"id":"1234568358","name":"Bay Max L","price":3290,"quantity":1,"unitMultiplier":null}],"reason":"Blah","receipt":{"date":"2025-08-15T13:51:41.148Z","orderId":"v5195004lux-01","receipt":"029f9ab8-751a-4b1e-bf81-7dd25d14b49b"}},"properties":{"discountValue":{"description":"Discount value in cents.","format":"int32","type":"integer"},"incrementValue":{"description":"Order value increment in cents.","format":"int32","type":"integer"},"itemsAdded":{"description":"Array with information on items added to the order.","items":{"type":"string"},"type":"array"},"itemsRemoved":{"description":"Array with information on items removed from the order.","items":{"$ref":"#/components/schemas/ItemsRemoved"},"type":"array"},"reason":{"description":"Change reason.","type":"string"},"receipt":{"$ref":"#/components/schemas/Receipt"}},"required":["reason","discountValue","incrementValue","itemsAdded","itemsRemoved","receipt"],"title":"ChangesDatum","type":"object"},"ClientProfileData":{"example":{"corporateDocument":null,"corporateName":null,"corporatePhone":null,"customerClass":null,"document":"11047867702","documentType":"cpf","email":"rodrigo.cunha@vtex.com.br","firstName":"Rodrigo","id":"clientProfileData","isCorporate":false,"lastName":"VTEX","phone":"+5521972321094","stateInscription":null,"tradeName":null,"userProfileId":"5a3692de-358a-4bea-8885-044bce33bb93"},"properties":{"corporateDocument":{"description":"Company document, in case client is corporate.","nullable":true,"type":"string"},"corporateName":{"description":"Company name, in case client is corporate.","nullable":true,"type":"string"},"corporatePhone":{"description":"Company telephone number, in case client is corporate.","nullable":true,"type":"string"},"customerClass":{"description":"Customer class.","nullable":true,"type":"string"},"document":{"description":"Client document.","type":"string"},"documentType":{"description":"Client document type.","type":"string"},"email":{"description":"Client email address.","type":"string"},"firstName":{"description":"Client first name.","type":"string"},"id":{"description":"Client ID.","type":"string"},"isCorporate":{"description":"Indicates whether client is corporate.","type":"boolean"},"lastName":{"description":"Client last name.","type":"string"},"phone":{"description":"Client telephone number.","type":"string"},"stateInscription":{"description":"Company state inscription, in case client is corporate.","nullable":true,"type":"string"},"tradeName":{"description":"Company trade name, in case client is corporate.","nullable":true,"type":"string"},"userProfileId":{"description":"User profile ID.","type":"string"}},"required":["id","email","firstName","lastName","documentType","document","phone","corporateName","tradeName","corporateDocument","stateInscription","corporatePhone","isCorporate","userProfileId","customerClass"],"title":"ClientProfileData","type":"object"},"CurrencyCode":{"example":{"BRL":{"Count":84,"Facets":null,"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}},"properties":{"BRL":{"$ref":"#/components/schemas/BRL"}},"required":["BRL"],"title":"CurrencyCode","type":"object"},"CurrencyCode1":{"example":{"BRL":{"Count":84,"Facets":null,"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163}},"properties":{"BRL":{"$ref":"#/components/schemas/BRL1"}},"required":["BRL"],"title":"CurrencyCode1","type":"object"},"CurrencyFormatInfo":{"example":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":",","CurrencyGroupSeparator":".","CurrencyGroupSize":3,"StartsWithCurrencySymbol":true},"properties":{"CurrencyDecimalDigits":{"description":"Currency decimal digits.","format":"int32","type":"integer"},"CurrencyDecimalSeparator":{"description":"Currency decimal separator.","type":"string"},"CurrencyGroupSeparator":{"description":"Currency group separator.","type":"string"},"CurrencyGroupSize":{"description":"Currency group size.","format":"int32","type":"integer"},"StartsWithCurrencySymbol":{"description":"Indicates whether value representations start with currency symbol.","type":"boolean"}},"required":["CurrencyDecimalDigits","CurrencyDecimalSeparator","CurrencyGroupSeparator","CurrencyGroupSize","StartsWithCurrencySymbol"],"title":"CurrencyFormatInfo","type":"object"},"DeliveryId":{"example":{"courierId":"197a56f","courierName":"Todos os CEPS","dockId":"1","quantity":1,"warehouseId":11},"properties":{"courierId":{"description":"Courier ID.","type":"string"},"courierName":{"description":"Courier name.","type":"string"},"dockId":{"description":"Dock ID.","type":"string"},"quantity":{"description":"Quantity.","format":"int32","type":"integer"},"warehouseId":{"description":"Warehouse ID.","type":"string"}},"required":["courierId","courierName","dockId","quantity","warehouseId"],"title":"DeliveryId","type":"object"},"Facets":{"example":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":11150,"Mean":1395.5882352941176,"Min":1250,"Missing":0,"StdDev":1200.5513439298484,"Sum":94900,"SumOfSquares":229010000},"Marketplace":{"Count":16,"Facets":null,"Max":21526180,"Mean":1373100.6875,"Min":1160,"Missing":0,"StdDev":5374326.141087491,"Sum":21969611,"SumOfSquares":463417210029853}}},"properties":{"currencyCode":{"$ref":"#/components/schemas/CurrencyCode"},"origin":{"$ref":"#/components/schemas/Origin"}},"required":["origin","currencyCode"],"title":"Facets","type":"object"},"Facets1":{"example":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":1,"Mean":1,"Min":1,"Missing":0,"StdDev":0,"Sum":68,"SumOfSquares":68},"Marketplace":{"Count":16,"Facets":null,"Max":89,"Mean":7.4375,"Min":1,"Missing":0,"StdDev":21.92401651157926,"Sum":119,"SumOfSquares":8095}}},"properties":{"currencyCode":{"$ref":"#/components/schemas/CurrencyCode1"},"origin":{"$ref":"#/components/schemas/Origin1"}},"required":["origin","currencyCode"],"title":"Facets1","type":"object"},"Fulfillment":{"example":{"Count":68,"Facets":null,"Max":11150,"Mean":1395.5882352941176,"Min":1250,"Missing":0,"StdDev":1200.5513439298484,"Sum":94900,"SumOfSquares":229010000},"properties":{"Count":{"description":"Count.","format":"int32","type":"integer"},"Facets":{"description":"Facets.","nullable":true,"type":"string"},"Max":{"description":"Maximum.","format":"int32","type":"integer"},"Mean":{"description":"Mean.","type":"number"},"Min":{"description":"Minimum.","format":"int32","type":"integer"},"Missing":{"description":"Missing.","format":"int32","type":"integer"},"StdDev":{"description":"Standard deviation.","type":"number"},"Sum":{"description":"Sum.","format":"int32","type":"integer"},"SumOfSquares":{"description":"Sum of squares.","format":"int32","type":"integer"}},"required":["Count","Max","Mean","Min","Missing","StdDev","Sum","SumOfSquares","Facets"],"title":"Fulfillment","type":"object"},"Fulfillment1":{"example":{"Count":68,"Facets":null,"Max":1,"Mean":1,"Min":1,"Missing":0,"StdDev":0,"Sum":68,"SumOfSquares":68},"properties":{"Count":{"description":"Count.","format":"int32","type":"integer"},"Facets":{"description":"Facets.","nullable":true,"type":"string"},"Max":{"description":"Maximum.","format":"int32","type":"integer"},"Mean":{"description":"Mean.","type":"number"},"Min":{"description":"Minimum.","format":"int32","type":"integer"},"Missing":{"description":"Missing.","format":"int32","type":"integer"},"StdDev":{"description":"Standard deviation.","type":"number"},"Sum":{"description":"Sum.","format":"int32","type":"integer"},"SumOfSquares":{"description":"Sum of squares.","format":"int64","type":"integer"}},"required":["Count","Max","Mean","Min","Missing","StdDev","Sum","SumOfSquares","Facets"],"title":"Fulfillment1","type":"object"},"InvoiceNotificationRequest":{"example":{"courier":null,"extraValue":100,"invoiceKey":null,"invoiceNumber":"9999","invoiceUrl":null,"invoiceValue":2499,"issuedDate":"2025-08-15T13:51:41.148Z","items":[{"id":"1234","price":10000,"quantity":1}],"trackingNumber":null,"trackingUrl":null,"type":"Output"},"properties":{"cfop":{"description":"Fiscal code used in Brazil.","example":"6.104","type":"string"},"courier":{"description":"The name of the carrier responsible for delivering the order.\n\r> This field should only be used when sending **tracking** information. When the request is used for sending the invoice, this field should be left empty (`\"\"`).","nullable":true,"type":"string"},"extraValue":{"description":"Extra value in the invoice in cents. Do not use any decimal separator. For instance, `$24.99` should be represented as `2499`.","example":100,"type":"integer"},"invoiceKey":{"description":"Invoice key.","nullable":true,"type":"string"},"invoiceNumber":{"description":"Number that identifies the invoice.","example":"123456789","type":"string"},"invoiceUrl":{"description":"URL of the invoice. Can be used to send the URL of an XML file, for example, which is useful for some integrations.","type":"string"},"invoiceValue":{"description":"Total amount being invoiced in cents. Do not use any decimal separator. For instance, `$24.99` should be represented as `2499`.","example":2499,"type":"string"},"issuedDate":{"description":"Issuance date of the invoice in ISO format.","example":"2025-08-15T13:51:41.148Z","type":"string"},"items":{"description":"Array containing the SKUs that are being invoiced.","items":{"$ref":"#/components/schemas/Item1"},"type":"array"},"trackingNumber":{"description":"Code that identifies the order tracking.\n\r> This field should only be used when sending the **tracking** information. When the request is used for sending the invoice, this field should be left empty (`\"\"`).","nullable":true,"type":"string"},"trackingUrl":{"description":"URL used to track the order.\n\r> This field should only be used when sending the **tracking** information. When the request is used for sending the invoice, this field should be left empty (`\"\"`).","nullable":true,"type":"string"},"type":{"description":"The type of invoice. There are two possible values: `\"Output\"` and `\"Input\"`. The `\"Output\"` type should be used when the invoice you are sending is a selling invoice. The `\"Input\"` type should be used when you send a return invoice.","example":"Output","type":"string"},"volumes":{"description":"Number of volumes in the invoice.","example":3,"type":"integer"}},"required":["type","issuedDate","invoiceNumber","invoiceValue","items"],"title":"InvoiceNotificationRequest","type":"object"},"Item1":{"example":{"id":"1234","price":10000,"quantity":1},"properties":{"itemIndex":{"description":"Index of the SKU being invoiced.","example":67,"type":"string"},"price":{"description":"Total price of the SKU being invoiced in cents. Do not use any decimal separator. For instance, `$24.99` should be represented as `2499`.","example":2499,"format":"int32","type":"integer"},"quantity":{"description":"Quantity cof the SKU being invoiced.","example":3,"format":"int32","type":"integer"}},"required":["itemIndex","price","quantity"],"title":"Item1","type":"object"},"ItemsRemoved":{"example":{"id":"1234568358","name":"Bay Max L","price":3290,"quantity":1,"unitMultiplier":null},"properties":{"id":{"description":"Id of removed item.","type":"string"},"name":{"description":"Name of removed item.","type":"string"},"price":{"description":"Removed items price in cents.","format":"int32","type":"integer"},"quantity":{"description":"Quantity of items removed.","format":"int32","type":"integer"},"unitMultiplier":{"description":"Removed item unit multiplier.","nullable":true,"type":"string"}},"required":["id","name","quantity","price","unitMultiplier"],"title":"ItemsRemoved","type":"object"},"List":{"example":{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.148Z","callCenterOperatorName":null,"clientName":"J C","creationDate":"2025-08-15T13:51:41.148Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Sua Nota Fiscal foi emitida. Referente ao Pedido #v502559llux-01 Olá, J. Estamos empacotando seu produto para providenci","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502559llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Boleto Bancário","salesChannel":"1","sequence":"502559","status":"invoiced","statusDescription":"Faturado","totalItems":1,"totalValue":7453,"workflowInErrorState":false,"workflowInRetry":false},"properties":{"ShippingEstimatedDate":{"description":"Shipping estimate date.","nullable":true,"type":"string"},"ShippingEstimatedDateMax":{"description":"Maximum shipping estimate date.","nullable":true,"type":"string"},"ShippingEstimatedDateMin":{"description":"Minimum shipping estimate date.","nullable":true,"type":"string"},"affiliateId":{"description":"Three letter code indicating the marketplace in which the order was placed.","type":"string"},"authorizedDate":{"description":"Authorized date.","nullable":true,"type":"string"},"callCenterOperatorName":{"description":"Call center operator name.","nullable":true,"type":"string"},"clientName":{"description":"Client name.","type":"string"},"creationDate":{"description":"Creation date.","type":"string"},"currencyCode":{"description":"Currency code.","type":"string"},"items":{"description":"Order items.","nullable":true,"type":"string"},"lastMessageUnread":{"description":"Last unread message.","nullable":true,"type":"string"},"listId":{"description":"List ID.","nullable":true,"type":"string"},"listType":{"description":"List type.","nullable":true,"type":"string"},"marketPlaceOrderId":{"description":"ID of the order in the marketplace.","nullable":true,"type":"string"},"orderId":{"description":"Order ID.","type":"string"},"orderIsComplete":{"description":"Indicates whether order is complete.","type":"boolean"},"origin":{"description":"Indicates whether order is marketplace, fulfillment or chain.","type":"string"},"paymentNames":{"description":"Order payment names.","type":"string"},"salesChannel":{"description":"Sales channel.","type":"string"},"sequence":{"description":"Order sequence number.","type":"string"},"status":{"description":"Order status.","type":"string"},"statusDescription":{"description":"Order status description.","type":"string"},"totalItems":{"description":"Total items.","format":"int32","type":"integer"},"totalValue":{"description":"Order total value in cents.","format":"int32","type":"integer"},"workflowInErrorState":{"description":"Indicates whether order workflow is in error state.","type":"boolean"},"workflowInRetry":{"description":"Indicates whether workflow is in retry.","type":"boolean"}},"required":["orderId","creationDate","clientName","items","totalValue","paymentNames","status","statusDescription","marketPlaceOrderId","sequence","salesChannel","affiliateId","origin","workflowInErrorState","workflowInRetry","lastMessageUnread","ShippingEstimatedDate","ShippingEstimatedDateMax","ShippingEstimatedDateMin","orderIsComplete","listId","listType","authorizedDate","callCenterOperatorName","totalItems","currencyCode"],"title":"List","type":"object"},"ListOrders":{"example":{"facets":[],"list":[{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.148Z","callCenterOperatorName":null,"clientName":"J C","creationDate":"2025-08-15T13:51:41.148Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Sua Nota Fiscal foi emitida. Referente ao Pedido #v502559llux-01 Olá, J. Estamos empacotando seu produto para providenci","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502559llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Boleto Bancário","salesChannel":"1","sequence":"502559","status":"invoiced","statusDescription":"Faturado","totalItems":1,"totalValue":7453,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.148Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.148Z","callCenterOperatorName":null,"clientName":"Rodrigo VTEX","creationDate":"2025-08-15T13:51:41.148Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store Seu pedido foi alterado! Pedido realizado em: 28/01/2019 Olá, Rodrigo. Seu pedido foi alterado. Seguem informações abaixo: ","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502556llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Boleto Bancário","salesChannel":"1","sequence":"502556","status":"handling","statusDescription":"Preparando Entrega","totalItems":1,"totalValue":1160,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.149Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Sua Nota Fiscal foi emitida. Referente ao Pedido #v502553llux-01 Olá, test. Estamos empacotando seu produto para provide","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502553llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Mastercard","salesChannel":"1","sequence":"502554","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":10150,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.149Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pagamento foi aprovado. Referente ao Pedido #v502550llux-01 Olá, test. Estamos providenciando a emissão da Nota Fisc","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502550llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Mastercard","salesChannel":"1","sequence":"502551","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":10150,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.149Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pagamento foi aprovado. Referente ao Pedido #v502547llux-01 Olá, test. Estamos providenciando a emissão da Nota Fisc","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502547llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Mastercard","salesChannel":"1","sequence":"502548","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":10150,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":null,"callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pedido foi cancelado. Referente ao Pedido #v502544llux-01 Resumo Itens R$ 89,90 Total R$ 89,90 Produto Alavanca De M","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502544llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Boleto Bancário","salesChannel":"1","sequence":"502544","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":8990,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":null,"callCenterOperatorName":null,"clientName":"Douglas Rodrigues","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pedido foi cancelado. Referente ao Pedido #v502541llux-01 Resumo Itens R$ 32,90 Total R$ 32,90 Produto Bay Max L 1 u","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502541llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Boleto Bancário","salesChannel":"1","sequence":"502541","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":3290,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.149Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"test test","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":" Lux Store 96 Seu pagamento foi aprovado. Referente ao Pedido #v502538llux-01 Olá, test. Estamos providenciando a emissão da Nota Fisc","listId":null,"listType":null,"marketPlaceOrderId":null,"orderId":"v502538llux-01","orderIsComplete":true,"origin":"Marketplace","paymentNames":"Mastercard","salesChannel":"1","sequence":"502538","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":8990,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":"cancelamento teste shp ","listId":null,"listType":null,"marketPlaceOrderId":"880102018018-01","orderId":"SCP-880102018018-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502537","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"880091692043-01","orderId":"SCP-880091692043-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502536","status":"invoiced","statusDescription":"Faturado","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":"Teste de cancelamento do ShopFácil ","listId":null,"listType":null,"marketPlaceOrderId":"880091058221-01","orderId":"SCP-880091058221-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502535","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.149Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"880090643370-01","orderId":"SCP-880090643370-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502534","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":null,"callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"880090622238-01","orderId":"SCP-880090622238-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502533","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":null,"ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"MNC","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"Carlos VTEX","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"877730530419-01","orderId":"MNC-877730530419-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502532","status":"canceled","statusDescription":"Cancelado","totalItems":1,"totalValue":11150,"workflowInErrorState":false,"workflowInRetry":false},{"ShippingEstimatedDate":"2025-08-15T13:51:41.149Z","ShippingEstimatedDateMax":null,"ShippingEstimatedDateMin":null,"affiliateId":"SCP","authorizedDate":"2025-08-15T13:51:41.149Z","callCenterOperatorName":null,"clientName":"roberta grecco","creationDate":"2025-08-15T13:51:41.149Z","currencyCode":"BRL","items":null,"lastMessageUnread":null,"listId":null,"listType":null,"marketPlaceOrderId":"876733475998-01","orderId":"SCP-876733475998-01","orderIsComplete":true,"origin":"Fulfillment","paymentNames":"","salesChannel":"1","sequence":"502531","status":"ready-for-handling","statusDescription":"Pronto para o manuseio","totalItems":1,"totalValue":1250,"workflowInErrorState":false,"workflowInRetry":false}],"paging":{"currentPage":1,"pages":6,"perPage":15,"total":84},"stats":{"stats":{"totalItems":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":1,"Mean":1,"Min":1,"Missing":0,"StdDev":0,"Sum":68,"SumOfSquares":68},"Marketplace":{"Count":16,"Facets":null,"Max":89,"Mean":7.4375,"Min":1,"Missing":0,"StdDev":21.92401651157926,"Sum":119,"SumOfSquares":8095}}},"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163},"totalValue":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":11150,"Mean":1395.5882352941176,"Min":1250,"Missing":0,"StdDev":1200.5513439298484,"Sum":94900,"SumOfSquares":229010000},"Marketplace":{"Count":16,"Facets":null,"Max":21526180,"Mean":1373100.6875,"Min":1160,"Missing":0,"StdDev":5374326.141087491,"Sum":21969611,"SumOfSquares":463417210029853}}},"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}}}},"properties":{"facets":{"description":"Array of facets.","items":{"type":"string"},"type":"array"},"list":{"description":"Array containing information on orders listed.","items":{"$ref":"#/components/schemas/List"},"type":"array"},"paging":{"$ref":"#/components/schemas/Paging"},"stats":{"$ref":"#/components/schemas/Stats"}},"required":["list","facets","paging","stats"],"title":"ListOrders","type":"object"},"LogisticsInfo":{"example":{"addressId":"-1425945657910","deliveryChannel":"delivery","deliveryCompany":"Todos os CEPS","deliveryIds":[{"courierId":"197a56f","courierName":"Todos os CEPS","dockId":"1","quantity":1,"warehouseId":11}],"deliveryWindow":null,"itemIndex":0,"listPrice":1160,"lockTTL":"10d","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"selectedSla":"Normal","sellingPrice":1160,"shippingEstimate":"5bd","shippingEstimateDate":"2025-08-15T13:51:41.149Z","shipsTo":["BRA"],"slas":[{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Normal","name":"Normal","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"shippingEstimate":"5bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Expressa","name":"Expressa","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"shippingEstimate":"5bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Quebra Kit","name":"Quebra Kit","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1392,"shippingEstimate":"2bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Sob Encomenda","name":"Sob Encomenda","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1392,"shippingEstimate":"32bd"}]},"properties":{"addressId":{"description":"Address ID.","type":"string"},"deliveryChannel":{"description":"Delivery channel.","type":"string"},"deliveryCompany":{"description":"Delivery company.","type":"string"},"deliveryIds":{"description":"Array of delivery IDs.","items":{"$ref":"#/components/schemas/DeliveryId"},"type":"array"},"deliveryWindow":{"description":"Delivery window information.","nullable":true,"type":"string"},"itemIndex":{"description":"Item index, matching the index in the `items` array.","format":"int32","type":"integer"},"listPrice":{"description":"List price in cents.","format":"int32","type":"integer"},"lockTTL":{"description":"Reservation lasting period.","type":"string"},"pickupStoreInfo":{"$ref":"#/components/schemas/PickupStoreInfo"},"polygonName":{"description":"Polygon name.","nullable":true,"type":"string"},"price":{"description":"Prince in cents.","format":"int32","type":"integer"},"selectedSla":{"description":"Selected SLA.","type":"string"},"sellingPrice":{"description":"Selling price in cents.","format":"int32","type":"integer"},"shippingEstimate":{"description":"Shipping estimate.","type":"string"},"shippingEstimateDate":{"description":"Shipping estimate date.","type":"string"},"shipsTo":{"description":"List of countries (three letter ISO code) to which shipping is available.","items":{"type":"string"},"type":"array"},"slas":{"description":"Array with information on the SLAs.","items":{"$ref":"#/components/schemas/Sla"},"type":"array"}},"required":["itemIndex","selectedSla","lockTTL","price","listPrice","sellingPrice","deliveryWindow","deliveryCompany","shippingEstimate","shippingEstimateDate","slas","shipsTo","deliveryIds","deliveryChannel","pickupStoreInfo","addressId","polygonName"],"title":"LogisticsInfo","type":"object"},"Marketplace":{"example":{"baseURL":"http://oms.vtexinternal.com.br/api/oms?an=luxstore","isCertified":null,"name":"luxstore"},"properties":{"baseURL":{"description":"Marketplace base URL.","type":"string"},"isCertified":{"description":"Indicates whether marketplace is certified.","nullable":true,"type":"string"},"name":{"description":"Marketplace name.","type":"string"}},"required":["baseURL","isCertified","name"],"title":"Marketplace","type":"object"},"Marketplace1":{"example":{"Count":16,"Facets":null,"Max":21526180,"Mean":1373100.6875,"Min":1160,"Missing":0,"StdDev":5374326.141087491,"Sum":21969611,"SumOfSquares":463417210029853},"properties":{"Count":{"description":"Count.","format":"int32","type":"integer"},"Facets":{"description":"Facets.","nullable":true,"type":"string"},"Max":{"description":"Maximum.","format":"int32","type":"integer"},"Mean":{"description":"Mean.","type":"number"},"Min":{"description":"Minimum.","format":"int32","type":"integer"},"Missing":{"description":"Missing.","format":"int32","type":"integer"},"StdDev":{"description":"Standard deviation.","type":"number"},"Sum":{"description":"Sum.","format":"int32","type":"integer"},"SumOfSquares":{"description":"Sum of squares.","format":"int64","type":"integer"}},"required":["Count","Max","Mean","Min","Missing","StdDev","Sum","SumOfSquares","Facets"],"title":"Marketplace1","type":"object"},"Marketplace2":{"example":{"Count":16,"Facets":null,"Max":89,"Mean":7.4375,"Min":1,"Missing":0,"StdDev":21.92401651157926,"Sum":119,"SumOfSquares":8095},"properties":{"Count":{"description":"Count.","format":"int32","type":"integer"},"Facets":{"description":"Facets.","nullable":true,"type":"string"},"Max":{"description":"Maximum.","format":"int32","type":"integer"},"Mean":{"description":"Mean.","type":"number"},"Min":{"description":"Minimum.","format":"int32","type":"integer"},"Missing":{"description":"Missing.","format":"int32","type":"integer"},"StdDev":{"description":"Standard deviation.","type":"number"},"Sum":{"description":"Sum.","format":"int32","type":"integer"},"SumOfSquares":{"description":"Sum of squares.","format":"int64","type":"integer"}},"required":["Count","Max","Mean","Min","Missing","StdDev","Sum","SumOfSquares","Facets"],"title":"Marketplace2","type":"object"},"Origin":{"example":{"Fulfillment":{"Count":68,"Facets":null,"Max":11150,"Mean":1395.5882352941176,"Min":1250,"Missing":0,"StdDev":1200.5513439298484,"Sum":94900,"SumOfSquares":229010000},"Marketplace":{"Count":16,"Facets":null,"Max":21526180,"Mean":1373100.6875,"Min":1160,"Missing":0,"StdDev":5374326.141087491,"Sum":21969611,"SumOfSquares":463417210029853}},"properties":{"Fulfillment":{"$ref":"#/components/schemas/Fulfillment"},"Marketplace":{"$ref":"#/components/schemas/Marketplace1"}},"required":["Fulfillment","Marketplace"],"title":"Origin","type":"object"},"Origin1":{"example":{"Fulfillment":{"Count":68,"Facets":null,"Max":1,"Mean":1,"Min":1,"Missing":0,"StdDev":0,"Sum":68,"SumOfSquares":68},"Marketplace":{"Count":16,"Facets":null,"Max":89,"Mean":7.4375,"Min":1,"Missing":0,"StdDev":21.92401651157926,"Sum":119,"SumOfSquares":8095}},"properties":{"Fulfillment":{"$ref":"#/components/schemas/Fulfillment1"},"Marketplace":{"$ref":"#/components/schemas/Marketplace2"}},"required":["Fulfillment","Marketplace"],"title":"Origin1","type":"object"},"Paging":{"example":{"currentPage":1,"pages":6,"perPage":15,"total":84},"properties":{"currentPage":{"description":"Current returned page.","format":"int32","type":"integer"},"pages":{"description":"Number of pages.","format":"int32","type":"integer"},"perPage":{"description":"Number of items returned per page.","format":"int32","type":"integer"},"total":{"description":"Paging total.","format":"int32","type":"integer"}},"required":["total","pages","currentPage","perPage"],"title":"Paging","type":"object"},"Payment":{"example":{"cardHolder":null,"cardNumber":null,"connectorResponses":{},"cvv2":null,"dueDate":"2025-08-15T13:51:41.149Z","expireMonth":null,"expireYear":null,"firstDigits":null,"giftCardCaption":null,"giftCardId":null,"giftCardName":null,"group":"bankInvoice","id":"D3DEECAB3C6C4B9EAF8EF4C1FE062FF3","installments":1,"lastDigits":null,"paymentSystem":"6","paymentSystemName":"Boleto Bancário","redemptionCode":null,"referenceValue":4450,"tid":null,"url":"https://luxstore.vtexpayments.com.br:443/BankIssuedInvoice/Transaction/418213DE29634837A63DD693A937A696/Payment/D3DEECAB3C6C4B9EAF8EF4C1FE062FF3/Installment/{Installment}","value":4450},"properties":{"cardHolder":{"description":"Card holder","nullable":true,"type":"string"},"cardNumber":{"description":"Card number.","nullable":true,"type":"string"},"connectorResponses":{"description":"Connector responses.","type":"object"},"cvv2":{"description":"Card verification code.","nullable":true,"type":"string"},"dueDate":{"description":"Due date.","type":"string"},"expireMonth":{"description":"Card expiration month.","nullable":true,"type":"string"},"expireYear":{"description":"Card expiration year.","nullable":true,"type":"string"},"firstDigits":{"description":"Card first digits.","nullable":true,"type":"string"},"giftCardCaption":{"description":"Gift card caption.","nullable":true,"type":"string"},"giftCardId":{"description":"Gift card ID.","nullable":true,"type":"string"},"giftCardName":{"description":"Gift card name.","nullable":true,"type":"string"},"group":{"description":"Payment group.","type":"string"},"id":{"description":"Payment ID.","type":"string"},"installments":{"description":"Payment installments.","format":"int32","type":"integer"},"lastDigits":{"description":"Card last digits.","nullable":true,"type":"string"},"paymentSystem":{"description":"Payment system.","type":"string"},"paymentSystemName":{"description":"Payment system name.","type":"string"},"redemptionCode":{"description":"Redemption code.","nullable":true,"type":"string"},"referenceValue":{"description":"Reference value for interest calculation in cents.","format":"int32","type":"integer"},"tid":{"description":"Payment TID.","nullable":true,"type":"string"},"url":{"description":"Payment URL.","type":"string"},"value":{"description":"Payment value in cents.","format":"int32","type":"integer"}},"required":["id","paymentSystem","paymentSystemName","value","installments","referenceValue","cardHolder","cardNumber","firstDigits","lastDigits","cvv2","expireMonth","expireYear","url","giftCardId","giftCardName","giftCardCaption","redemptionCode","group","tid","dueDate","connectorResponses"],"title":"Payment","type":"object"},"PaymentData":{"example":{"transactions":[{"isActive":true,"merchantName":"luxstore","payments":[{"cardHolder":null,"cardNumber":null,"connectorResponses":{},"cvv2":null,"dueDate":"2025-08-15T13:51:41.149Z","expireMonth":null,"expireYear":null,"firstDigits":null,"giftCardCaption":null,"giftCardId":null,"giftCardName":null,"group":"bankInvoice","id":"D3DEECAB3C6C4B9EAF8EF4C1FE062FF3","installments":1,"lastDigits":null,"paymentSystem":"6","paymentSystemName":"Boleto Bancário","redemptionCode":null,"referenceValue":4450,"tid":null,"url":"https://luxstore.vtexpayments.com.br:443/BankIssuedInvoice/Transaction/418213DE29634837A63DD693A937A696/Payment/D3DEECAB3C6C4B9EAF8EF4C1FE062FF3/Installment/{Installment}","value":4450}],"transactionId":"418213DE29634837A63DD693A937A696"}]},"properties":{"transactions":{"description":"Array with information on each transaction of the order.","items":{"$ref":"#/components/schemas/Transaction"},"type":"array"}},"required":["transactions"],"title":"PaymentData","type":"object"},"PickupStoreInfo":{"example":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"properties":{"additionalInfo":{"description":"Pickup additional information.","nullable":true,"type":"string"},"address":{"description":"Pickup address.","nullable":true,"type":"string"},"dockId":{"description":"Pickup dock ID.","nullable":true,"type":"string"},"friendlyName":{"description":"Pickup friendly name.","nullable":true,"type":"string"},"isPickupStore":{"description":"Indicates whether it is pickup store.","type":"boolean"}},"required":["additionalInfo","address","dockId","friendlyName","isPickupStore"],"title":"PickupStoreInfo","type":"object"},"RatesAndBenefitsData":{"example":{"id":"ratesAndBenefitsData","rateAndBenefitsIdentifiers":[]},"properties":{"id":{"default":"ratesAndBenefitsData","description":"Field ID.","type":"string"},"rateAndBenefitsIdentifiers":{"description":"Array with rates and benefits IDs.","items":{"type":"string"},"type":"array"}},"required":["id","rateAndBenefitsIdentifiers"],"title":"RatesAndBenefitsData","type":"object"},"Receipt":{"example":{"date":"2025-08-15T13:51:41.149Z","orderId":"v5195004lux-01","receipt":"029f9ab8-751a-4b1e-bf81-7dd25d14b49b"},"properties":{"date":{"description":"Date.","type":"string"},"orderId":{"description":"Order ID.","type":"string"},"receipt":{"description":"Receipt.","type":"string"}},"required":["date","orderId","receipt"],"title":"Receipt","type":"object"},"SelectedAddress":{"$ref":"#/components/schemas/Address"},"Seller":{"example":{"id":"1","logo":"","name":"Loja do Suporte"},"properties":{"id":{"description":"Seller ID.","type":"string"},"logo":{"description":"Seller logo.","type":"string"},"name":{"description":"Seller name.","type":"string"}},"required":["id","name","logo"],"title":"Seller","type":"object"},"ShippingData":{"example":{"address":{"addressId":"-1425945657910","addressType":"residential","city":"Rio de Janeiro","complement":"3","country":"BRA","geoCoordinates":[],"neighborhood":"Botafogo","number":"300","postalCode":"22250-040","receiverName":"Rodrigo Cunha","reference":null,"state":"RJ","street":"Praia de Botafogo"},"id":"shippingData","logisticsInfo":[{"addressId":"-1425945657910","deliveryChannel":"delivery","deliveryCompany":"Todos os CEPS","deliveryIds":[{"courierId":"197a56f","courierName":"Todos os CEPS","dockId":"1","quantity":1,"warehouseId":11}],"deliveryWindow":null,"itemIndex":0,"listPrice":1160,"lockTTL":"10d","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"selectedSla":"Normal","sellingPrice":1160,"shippingEstimate":"5bd","shippingEstimateDate":"2025-08-15T13:51:41.149Z","shipsTo":["BRA"],"slas":[{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Normal","name":"Normal","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"shippingEstimate":"5bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Expressa","name":"Expressa","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"shippingEstimate":"5bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Quebra Kit","name":"Quebra Kit","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1392,"shippingEstimate":"2bd"},{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Sob Encomenda","name":"Sob Encomenda","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1392,"shippingEstimate":"32bd"}]}],"selectedAddresses":[{"addressId":"-1425945657910","addressType":"residential","city":"Rio de Janeiro","complement":"10","country":"BRA","geoCoordinates":[],"neighborhood":"Botafogo","number":"518","postalCode":"22250-040","receiverName":"Rodrigo Cunha","reference":null,"state":"RJ","street":"Praia de Botafogo"}],"trackingHints":null},"properties":{"address":{"$ref":"#/components/schemas/Address"},"id":{"default":"shippingData","description":"Field ID.","type":"string"},"logisticsInfo":{"description":"Array with logistics information of each item in the order.","items":{"$ref":"#/components/schemas/LogisticsInfo"},"type":"array"},"selectedAddresses":{"description":"Array of the selected addresses' information.","items":{"$ref":"#/components/schemas/Address"},"type":"array"},"trackingHints":{"description":"Tracking hints.","nullable":true,"type":"string"}},"required":["id","address","logisticsInfo","trackingHints","selectedAddresses"],"title":"ShippingData","type":"object"},"Sla":{"example":{"deliveryChannel":"delivery","deliveryWindow":null,"id":"Normal","name":"Normal","pickupStoreInfo":{"additionalInfo":null,"address":null,"dockId":null,"friendlyName":null,"isPickupStore":false},"polygonName":null,"price":1160,"shippingEstimate":"5bd"},"properties":{"deliveryChannel":{"description":"SLA delivery channel.","type":"string"},"deliveryWindow":{"description":"SLA delivery window.","nullable":true,"type":"string"},"id":{"description":"SLA ID.","type":"string"},"name":{"description":"SLA name.","type":"string"},"pickupStoreInfo":{"$ref":"#/components/schemas/PickupStoreInfo"},"polygonName":{"description":"SLA polygon name.","nullable":true,"type":"string"},"price":{"description":"SLA price in cents.","format":"int32","type":"integer"},"shippingEstimate":{"description":"SLA shipping estimate.","type":"string"}},"required":["id","name","shippingEstimate","deliveryWindow","price","deliveryChannel","pickupStoreInfo","polygonName"],"title":"Sla","type":"object"},"Stats":{"example":{"stats":{"totalItems":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":1,"Mean":1,"Min":1,"Missing":0,"StdDev":0,"Sum":68,"SumOfSquares":68},"Marketplace":{"Count":16,"Facets":null,"Max":89,"Mean":7.4375,"Min":1,"Missing":0,"StdDev":21.92401651157926,"Sum":119,"SumOfSquares":8095}}},"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163},"totalValue":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":11150,"Mean":1395.5882352941176,"Min":1250,"Missing":0,"StdDev":1200.5513439298484,"Sum":94900,"SumOfSquares":229010000},"Marketplace":{"Count":16,"Facets":null,"Max":21526180,"Mean":1373100.6875,"Min":1160,"Missing":0,"StdDev":5374326.141087491,"Sum":21969611,"SumOfSquares":463417210029853}}},"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}}},"properties":{"stats":{"$ref":"#/components/schemas/Stats1"}},"required":["stats"],"title":"Stats","type":"object"},"Stats1":{"example":{"totalItems":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":1,"Mean":1,"Min":1,"Missing":0,"StdDev":0,"Sum":68,"SumOfSquares":68},"Marketplace":{"Count":16,"Facets":null,"Max":89,"Mean":7.4375,"Min":1,"Missing":0,"StdDev":21.92401651157926,"Sum":119,"SumOfSquares":8095}}},"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163},"totalValue":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":11150,"Mean":1395.5882352941176,"Min":1250,"Missing":0,"StdDev":1200.5513439298484,"Sum":94900,"SumOfSquares":229010000},"Marketplace":{"Count":16,"Facets":null,"Max":21526180,"Mean":1373100.6875,"Min":1160,"Missing":0,"StdDev":5374326.141087491,"Sum":21969611,"SumOfSquares":463417210029853}}},"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}},"properties":{"totalItems":{"$ref":"#/components/schemas/TotalItems"},"totalValue":{"$ref":"#/components/schemas/TotalValue"}},"required":["totalValue","totalItems"],"title":"Stats1","type":"object"},"StorePreferencesData":{"example":{"countryCode":"BRA","currencyCode":"BRL","currencyFormatInfo":{"CurrencyDecimalDigits":2,"CurrencyDecimalSeparator":",","CurrencyGroupSeparator":".","CurrencyGroupSize":3,"StartsWithCurrencySymbol":true},"currencyLocale":1046,"currencySymbol":"R$","timeZone":"E. South America Standard Time"},"properties":{"countryCode":{"description":"Three letter ISO country code.","type":"string"},"currencyCode":{"description":"Currency code.","type":"string"},"currencyFormatInfo":{"$ref":"#/components/schemas/CurrencyFormatInfo"},"currencyLocale":{"description":"Currency locale.","format":"int32","type":"integer"},"currencySymbol":{"description":"Currency symbol.","type":"string"},"timeZone":{"description":"Time zone.","type":"string"}},"required":["countryCode","currencyCode","currencyFormatInfo","currencyLocale","currencySymbol","timeZone"],"title":"StorePreferencesData","type":"object"},"TotalItems":{"example":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":1,"Mean":1,"Min":1,"Missing":0,"StdDev":0,"Sum":68,"SumOfSquares":68},"Marketplace":{"Count":16,"Facets":null,"Max":89,"Mean":7.4375,"Min":1,"Missing":0,"StdDev":21.92401651157926,"Sum":119,"SumOfSquares":8095}}},"Max":89,"Mean":2.2261904761904763,"Min":1,"Missing":0,"StdDev":9.660940100525016,"Sum":187,"SumOfSquares":8163},"properties":{"Count":{"description":"Count.","format":"int32","type":"integer"},"Facets":{"description":"Facets.","nullable":true,"type":"string"},"Max":{"description":"Maximum.","format":"int32","type":"integer"},"Mean":{"description":"Mean.","type":"number"},"Min":{"description":"Minimum.","format":"int32","type":"integer"},"Missing":{"description":"Missing.","format":"int32","type":"integer"},"StdDev":{"description":"Standard deviation.","type":"number"},"Sum":{"description":"Sum.","format":"int32","type":"integer"},"SumOfSquares":{"description":"Sum of squares.","format":"int64","type":"integer"}},"required":["Count","Max","Mean","Min","Missing","StdDev","Sum","SumOfSquares","Facets"],"title":"TotalItems","type":"object"},"TotalValue":{"example":{"Count":84,"Facets":{"currencyCode":{"BRL":{"Count":84,"Facets":null,"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853}},"origin":{"Fulfillment":{"Count":68,"Facets":null,"Max":11150,"Mean":1395.5882352941176,"Min":1250,"Missing":0,"StdDev":1200.5513439298484,"Sum":94900,"SumOfSquares":229010000},"Marketplace":{"Count":16,"Facets":null,"Max":21526180,"Mean":1373100.6875,"Min":1160,"Missing":0,"StdDev":5374326.141087491,"Sum":21969611,"SumOfSquares":463417210029853}}},"Max":21526180,"Mean":262672.75,"Min":1160,"Missing":0,"StdDev":2348087.3869179883,"Sum":22064511,"SumOfSquares":463417439039853},"properties":{"Count":{"description":"Value count.","format":"int32","type":"integer"},"Facets":{"$ref":"#/components/schemas/Facets"},"Max":{"description":"Value maximum.","format":"int32","type":"integer"},"Mean":{"description":"Value mean.","type":"number"},"Min":{"description":"Value minimum.","format":"int32","type":"integer"},"Missing":{"description":"Missing values.","format":"int32","type":"integer"},"StdDev":{"description":"Values standard deviation.","type":"number"},"Sum":{"description":"Values sum.","format":"int32","type":"integer"},"SumOfSquares":{"description":"Values sum of squares","format":"int64","type":"integer"}},"required":["Count","Max","Mean","Min","Missing","StdDev","Sum","SumOfSquares","Facets"],"title":"TotalValue","type":"object"},"Transaction":{"example":{"isActive":true,"merchantName":"luxstore","payments":[{"cardHolder":null,"cardNumber":null,"connectorResponses":{},"cvv2":null,"dueDate":"2025-08-15T13:51:41.150Z","expireMonth":null,"expireYear":null,"firstDigits":null,"giftCardCaption":null,"giftCardId":null,"giftCardName":null,"group":"bankInvoice","id":"D3DEECAB3C6C4B9EAF8EF4C1FE062FF3","installments":1,"lastDigits":null,"paymentSystem":"6","paymentSystemName":"Boleto Bancário","redemptionCode":null,"referenceValue":4450,"tid":null,"url":"https://luxstore.vtexpayments.com.br:443/BankIssuedInvoice/Transaction/418213DE29634837A63DD693A937A696/Payment/D3DEECAB3C6C4B9EAF8EF4C1FE062FF3/Installment/{Installment}","value":4450}],"transactionId":"418213DE29634837A63DD693A937A696"},"properties":{"isActive":{"description":"Indicates whether transaction is active.","type":"boolean"},"merchantName":{"description":"Merchant name.","type":"string"},"payments":{"description":"Array with information on each payment for the order.","items":{"$ref":"#/components/schemas/Payment"},"type":"array"},"transactionId":{"description":"Transaction ID.","type":"string"}},"required":["isActive","transactionId","merchantName","payments"],"title":"Transaction","type":"object"}},"securitySchemes":{"VtexIdclientAutCookie":{"in":"header","name":"VtexIdclientAutCookie","type":"apiKey"},"appKey":{"in":"header","name":"X-VTEX-API-AppKey","type":"apiKey"},"appToken":{"in":"header","name":"X-VTEX-API-AppToken","type":"apiKey"}}}}