Learn about applying permissions to your customizations.
OAuth scopes
You can extend the functionality of the Merchant Center by using any of the Composable Commerce APIs. To do this, each customization must specify a list of the required OAuth scopes to satisfy the data fetching requirements.
view_products
and manage_products
. In addition, you might decide to also view Customers information. To fulfill these requirements, your customization would need the following OAuth scopes: view_products
, view_customers
, and manage_products
.oAuthScopes
field:{
"oAuthScopes": {
"view": ["view_products", "view_customers"],
"manage": ["manage_products"]
}
}
view
and manage
fields, which determine the mapping and relation between OAuth scopes and user permissions.Permission groups
oAuthScopes
field of your Custom Application config or Custom View config.However, you might need more granular access control to fulfill specific business requirements. For example, if your customization manages products, discounts, and orders, and you want a group of users to only manage products and discounts while another group handles orders.
additionalOAuthScopes
field in your Custom Application config or Custom View config.21.21.0
onwards.delivery
lets users manage incoming orders, while the group promotion
lets users work on discount and promotional campaigns.{
"oAuthScopes": {
"view": ["view_products", "view_customers"],
"manage": ["manage_products"]
},
"additionalOAuthScopes": [
{
"name": "delivery",
"view": [],
"manage": ["manage_orders"]
},
{
"name": "promotion",
"view": [],
"manage": ["manage_orders", "manage_discount_codes"]
}
]
}
The default permission group is always defined, even when adding additional groups.
When additional groups are defined, the default group can be left empty without specifying any OAuth scopes. However, at least one view-only user permission must be assigned to access the customization.
User permissions
The same concepts apply to customizations. After your customization is installed in your Organization, you can assign user permissions for your customization to each specific Team.
- When assigning view-only permission to a Team, only the
view_
OAuth scopes are used to authorize API requests. - When assigning manage permissions to a Team, both
view_
andmanage_
OAuth scopes are used to authorize API requests.
For Custom Applications only:
entryPointUriPath
, based on the following format:
{View,Manage}<EntryPointUriPath>
.Examples:
entryPointUriPath | User permission |
---|---|
channels | {View,Manage}Channels |
channel-list | {View,Manage}ChannelList |
channel_list | {View,Manage}Channel_List |
channel-01 | {View,Manage}Channel/01 |
Additional permission groups
When using additional permission groups, the permission name is derived as followed:
For Custom Applications
For Custom Views
entryPointUriPath
(same as the default group), plus the group name, based on the following format: {View,Manage}<EntryPointUriPath><GroupName>
entryPointUriPath | Permission group name | User permission |
---|---|---|
channels | warehouse | {View,Manage}ChannelsWarehouse |
channel-list | warehouse_west | {View,Manage}ChannelListWarehouseWest |