Author:
Fluent Commerce
Changed on:
5 Sept 2025
`ROLE NAME: STORE/ STORE_ASSISTANT``"subtype": "STORE",``"subtype": "STORE",``
`3. CONFIRM PACK`"subtype": "STORE",``
`4. COMPLETE WAVE`"subtype": "STORE",``
`| Ruleset Name | Ruleset Description | Subtype Value |
| ARTICLE_COLLECTED | Ruleset responsible for marking the articles as Courier Collected | "subtype": "DEFAULT" |
| Ruleset Name | Ruleset Description | Subtype Value |
| ARTICLE_COLLECTED | Ruleset responsible for marking the articles as Customer Collected | "subtype": "DEFAULT" |
| ARTICLE_ARRIVED | Ruleset responsible for marking the articles as Arrived in store (for the use case of inter store transfers only) | "subtype": "DEFAULT" |
| ArticleCancellation | Ruleset responsible for cancelling the Uncollected articles | "subtype": "DEFAULT" |
`<ACCOUNT_ID>.apps.fluentcommerce.com/store` with the location user credentialsYou are now ready to use the Fluent Store App.1mutation{updateRole(input:
2{name:"STORE"
3permissions:
4 [
5 {name:"LOCATION_VIEW"},
6 {name:"RETAILER_VIEW"},
7 {name:"PRICE_VIEW"},
8 {name:"SETTING_VIEW"}
9 {name:"CARRIER_VIEW"}
10 ]})
11 {id
12 name
13 permissions{name}}}1 "userActions": [
2 {
3 "context": [
4 {
5 "label": "Create Wave",
6 "type": "PRIMARY",
7 "modules": [
8 "servicepoint"
9 ],
10 "confirm": false
11 }
12 ],
13 "attributes": [
14 {
15 "name": "maxCount",
16 "label": "fc.sf.ui.waves.index.create.numberOfFulfilments.label",
17 "type": "INTEGER",
18 "defaultValue": 1,
19 "mandatory": true
20 },
21 {
22 "name": "userName",
23 "label": "Wave Owner",
24 "type": "STRING",
25 "source": "loggedInUsername",
26 "defaultValue": "",
27 "mandatory": false
28 }
29 ]
30 }
31 ]1 "userActions": [
2 {
3 "context": [
4 {
5 "label": "CONFIRM PICK",
6 "type": "PRIMARY",
7 "modules": [
8 "servicepoint"
9 ],
10 "confirm": true
11 }
12 ],
13 "attributes": [
14 {
15 "name": "pickedItems",
16 "label": "PICK",
17 "type": "PICKED_ITEMS",
18 "mandatory": true
19 }
20 ]
21 }
22 ]1 "userActions": [
2 {
3 "context": [
4 {
5 "label": "CONFIRM PACK",
6 "type": "PRIMARY",
7 "modules": [
8 "servicepoint"
9 ],
10 "confirm": true
11 }
12 ],
13 "attributes": []
14 }
15 ]1 "userActions": [
2 {
3 "context": [
4 {
5 "label": "Wave Complete",
6 "type": "PRIMARY",
7 "modules": [
8 "servicepoint"
9 ],
10 "confirm": false
11 }
12 ],
13 "attributes": []
14 }
15 ]