gitpod.v1.OrganizationService

UpdateOIDCConfig

Updates the OIDC token configuration for an organization.

Use this method to:

  • Switch between OIDC token versions (V2 or V3)
  • Configure extra sub claim fields (V3 only)

Examples

  • Enable V3 tokens with extra sub fields:

    organizationId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
    oidcConfig:
      v3:
        extraSubFields:
          - "environment_id"
          - "creator_email"
    
  • Switch back to V2 tokens:

    organizationId: "b0e12f6c-4c67-429d-a4a6-d9838b5da047"
    oidcConfig:
      v2: {}
    
post/gitpod.v1.OrganizationService/UpdateOIDCConfig

Request body

GitpodV1UpdateOIDCConfigRequest required— unresolved $ref

Response

Success

GitpodV1UpdateOIDCConfigResponse required— unresolved $ref

Changes