Skip to content

Commit 59f5105

Browse files
authored
Update application-provisioning-config-problem-scim-compatibility.md
Updated example for operations before/after using the feature flag
1 parent 9dd9489 commit 59f5105

File tree

1 file changed

+17
-23
lines changed

1 file changed

+17
-23
lines changed

articles/active-directory/app-provisioning/application-provisioning-config-problem-scim-compatibility.md

Lines changed: 17 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -101,33 +101,27 @@ Below are sample requests to help outline what the sync engine currently sends v
101101
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
102102
],
103103
"Operations": [
104-
{
105-
"op": "Add",
106-
"path": "nickName",
107-
"value": [
108-
{
109-
"value": "Babs"
110-
}
111-
]
112-
}
113-
]
114-
}
104+
{
105+
"op": "Add",
106+
"path": "nickName",
107+
"value": "Babs"
108+
}
109+
]
110+
}
111+
115112
```
116113

117114
**With feature flag**
118115
```json
119-
{
120-
"schemas": [
121-
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
122-
],
123-
"Operations": [
124-
{
125-
"op": "add",
126-
"value": {
127-
"nickName": "Babs"
128-
}
129-
}
130-
]
116+
{
117+
"schemas": ["urn:ietf:params:scim:api:messages:2.0:PatchOp"],
118+
"Operations": [
119+
{
120+
"op": "add",
121+
"path": "nickName",
122+
"value": "Babs"
123+
}
124+
]
131125
}
132126
```
133127

0 commit comments

Comments
 (0)