Skip to content

Groups are missing the Source property #822

@MichaelGrafnetter

Description

@MichaelGrafnetter

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: true

What 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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions