Documentation
Feedback
Guides

Release Notes
Release Notes
2023
February
Custom IO apps need to add the ListOrders resource
Starting March 15th, 2023, accounts with custom IO apps will need the ListOrders resource on the manifest.json file to be able to call list orders requests.

Recently, VTEX created the ListOrders License Manager resource, which gives permission to list orders from a given account. Before, the OMSViewer allowed both viewing and listing orders, but now each resource grants permission for a single action:

  • OMSViewer: view orders.
  • ListOrders: list orders.

Starting on March 15th, 2023, the new ListOrders resource will be automatically added to all authentications (roles and appkeys) that use the OMSViewer resource. In those cases, no action will be necessary.

However, to work as before, in addition to the previous OMSViewer resource, accounts with custom IO apps will need to add the ListOrders resource on their manifest.json file. That way, they will be able to view orders and make List Orders requests.

To make the update, go to the manifest.json file of your app project and add the ListOrders resource to the policies field, as shown in the example below:


_10
{
_10
"policies": [
_10
{
_10
"name": "OMSViewer"
_10
},
_10
{
_10
"name": "ListOrders"
_10
}
_10
]
_10
}

Contributors
1
Photo of the contributor
+ 1 contributors
Was this helpful?
Yes
No
Suggest edits (Github)
Contributors
1
Photo of the contributor
+ 1 contributors
On this page