...
workflow: Edit User Config Flow
Input
...
Type: application/json
| Name | Source | Mandatory | Type | Special Format | Description |
---|
uId | Query | YES | String | N/A | the user id |
config | Body | YES | Object | N/A |
|
|
| Name | Source | Mandatory | Type | Special Format | Description |
---|
keys | Body | NO | Object | N/A |
| packages | Body | NO | Object | N/A | Additional Properties: acl (Object) | allowedTenants | Body | NO | Object |
|
|
Name | Source | Mandatory | Type | Special Format | Description |
---|
tenant | Body | NO | Object |
| Properties: - id (String)
- code (String)
- pin (Object)
- code (String)
- allowed (Boolean)
| groups | Body | NO | Array |
|
|
|
example config: Code Block |
---|
language | actionscript3 |
---|
title | config |
---|
| config: {
packages: {},
keys: {},
allowedTenants: [
{"tenant": {
id: "THYME_tID",
code: "THYME_CODE",
pin: {"code": "1235", "allowed": true}
},
groups: ["waiter"]
},
{tenant: {
id: "ELVIRA_tID",
code: "ELVIRA_CODE"
},
groups: ["manager]
}
]
}, |
|
Output
...
Valid Response
Code Block |
---|
language | js |
---|
title | Valid Response Sample |
---|
|
{
"result": true,
"data": true
} |
...