Skip to content

Commit 3056452

Browse files
Merge pull request #5012 from segmentio/issue-4736
Adding a `userId` to the Full User Registration sample code
2 parents f1a76ad + cdae932 commit 3056452

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/connections/spec/best-practices-identify.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ You can see in this full page event, the `anonymousId` is populated, and the `us
9595
"sentAt": "2020-04-23T22:38:48.55Z",
9696
"timestamp": "2020-04-23T22:38:48.55Z",
9797
"type": "page",
98-
"UserId": null
98+
"userId": null
9999
}
100100
```
101101

@@ -153,7 +153,7 @@ You'll notice the `identify` call contains no `userId`. These traits will be ass
153153
"last_name": "Visitor"
154154
},
155155
"type": "page",
156-
"UserId": null
156+
"userId": null
157157
}
158158
```
159159

@@ -224,7 +224,7 @@ After you fire the `identify` call with the `userId`, you'll notice that the pay
224224
}
225225
},
226226
"type": "page",
227-
"UserId": null
227+
"userId": "123abc"
228228
}
229229
```
230230

0 commit comments

Comments
 (0)