This documentation is for an older version of GoodData.
Go to the latest version of this article.
Organization
Manage an organization.
See Manage Organizations to learn how organizations work in GoodData.
Methods
Example
Update organization’s name and OIDC provider:
from gooddata_sdk import GoodDataSdk
# GoodData base URL, e.g. "https://www.example.com"
host = "https://www.example.com"
# GoodData user token
token = "some_user_token"
sdk = GoodDataSdk.create(host, token)
# Update organization name
sdk.catalog_organization.update_name(name="new_organization_name")
# Update OIDC provider
sdk.catalog_organization.update_oidc_parameters(oauth_client_id="oauth_client_id",
oauth_issuer_location="oauth_issuer_location",
oauth_client_secret="oauth_client_secret")