Platform

Platform#

To interact with the watsonx.data integration platform, instantiate the ibm_watsonx_data_integration.platform.Platform class.

The Platform object serves as the entry point for accessing all major functionality in the SDK, including service instances, environments, flows, and more.

You must provide a valid authentication object (such as an instance of ibm_watsonx_data_integration.common.auth.IAMAuthenticator) when initializing the platform object.

Note

If you don’t specify base_api_url, the SDK defaults to ‘https://api.dataplatform.cloud.ibm.com’. For any other region, set base_api_url to the appropriate regional endpoint.

>>> from ibm_watsonx_data_integration.platform import Platform
>>> platform = Platform(auth, base_api_url="https://api.ca-tor.dai.cloud.ibm.com")

Once you’ve created the platform object, you can begin interacting with the watsonx.data integration platform.