Skip to main content
def create_app(
    name: str,
) -> Dict[str, str]

Parameters

  • name (str): App display name

Returns

  • Dict[str, str]: Response containing the authenticated URI and app metadata

Examples

from morphik import Morphik

db = Morphik()
resp = db.create_app(name="demo")
print(resp)

Notes

  • generate_cloud_uri is a deprecated alias for this method.
  • The SDK only accepts name for app creation.