mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
21 lines
416 B
Markdown
21 lines
416 B
Markdown
|
---
|
||
|
"@logto/core-kit": patch
|
||
|
"@logto/core": patch
|
||
|
---
|
||
|
|
||
|
userinfo endpoint will return `organization_data` claim if organization scope is requested
|
||
|
|
||
|
The claim includes all organizations that the user is a member of with the following structure:
|
||
|
|
||
|
```json
|
||
|
{
|
||
|
"organization_data": [
|
||
|
{
|
||
|
"id": "organization_id",
|
||
|
"name": "organization_name",
|
||
|
"description": "organization_description",
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
```
|