Skip to content

Commit 645b3ab

Browse files
update doc
1 parent c03b96b commit 645b3ab

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

content/extensions/ui-extensions.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,14 +371,19 @@ The JWT token consists of three main parts: the header, the body (payload), and
371371
"jti": "c1b6b9f1-8486-4f9e-9f96-8d1b40fccb65",
372372
"iat": 1743410036.116152,
373373
"exp": 1743413636.116162,
374-
"userId": "1"
374+
"userId": "1",
375+
"userEmail": "[email protected]",
376+
"username": "user1"
375377
}
376378
```
377379

378380
* ```jti``` The unique identifier for the token.
379381
* ```iat``` The issued at time.
380382
* ```exp``` The expiration time of the token.
381383
* ```userId``` The PIM user identifier (in this case, ```1```).
384+
* ```userEmail``` The PIM user email (in this case, ```[email protected]```).
385+
* ```username``` The PIM user name (in this case, ```user1```).
386+
382387

383388
*A signature*
384389

0 commit comments

Comments
 (0)