| ... | ... | @@ -192,7 +192,26 @@ In system.client any attributes this system table has per default, can be edited |
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
The other attributes have been added for this project and can be changed in core.customer. The id is the on from core.customer.
|
|
|
|
The other attributes have been added for this project and can be changed in core.customer. The id is the one from core.customer.
|
|
|
|
|
|
|
|
#### non-admin
|
|
|
|
|
|
|
|
Any user may edit it's own entry in core.customer:
|
|
|
|
|
|
|
|
```
|
|
|
|
#!json
|
|
|
|
|
|
|
|
# POST {{url}}/data/core/customer/34/transitions/modify
|
|
|
|
{
|
|
|
|
"salutation" : "Mr",
|
|
|
|
"phonenumbers": [{"Name": "Mobil", "Nummer":"+43 676 99 88 777"}],
|
|
|
|
"addresses": [{"Name":"Home", "Straße":"Oxford St", "PLZ":"SQ5 9DQ", "Stadt":"London", "Land":"England"}]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
#### admin
|
|
|
|
|
|
|
|
For an admin user, an unbound transition exists:
|
|
|
|
|
|
|
|
```
|
|
|
|
#!json
|
| ... | ... | |