-
Notifications
You must be signed in to change notification settings - Fork 104
Open
Labels
Description
Describe the bug?
The Group class is missing the Source property in the .NET SDK.
Here is an example of the Groups API response:
{
"id": "00gxfc73j2qQa9C8Y697",
"created": "2025-11-13T18:16:55.000Z",
"lastUpdated": "2025-11-13T18:40:40.000Z",
"lastMembershipUpdated": "2025-11-13T18:16:55.000Z",
"objectClass": [
"okta:user_group"
],
"type": "APP_GROUP",
"profile": {
"name": "TestGroup",
"description": null
},
"source": {
"id": "0oaxfbsrccSXeiKWB697"
},The source.id property value cannot be read using the Okta SDK v10.0.1.
What is expected to happen?
The following code should be IMO be added to the Group schema in the OpenAPI specification:
source:
type: object
properties:
id:
type: string
description: Identifier of the application which synchronizes the group
readOnly: trueWhat is the actual behavior?
The Group .NET class does not have the Source property.
Reproduction Steps?
Read a synchronized group, e.g., from AD, using the SDK.
Additional Information?
No response
.NET Version
10.0.100
SDK Version
10.0.1
OS version
No response