For the complete documentation index, see llms.txt. This page is also available as Markdown.

delete_storage

imerit_ango.sdk.SDK.

delete_storage(storage_id)

Remove a storage integration from your organization.

Parameters

  • storage_id: string

    • The unique identifier for the storage. You can retrieve the storage ID using get_storages function.

Returns:

  • output: dict

    • A dictionary containing the result of the operation.

    • Including a status field indicating whether the request was successful and a data field containing the response payload with updated resources produced by the operation.

Example

import os
from dotenv import load_dotenv
from imerit_ango.sdk import SDK

load_dotenv('variables.env')
api_key = os.getenv('API_KEY')

ango_sdk = SDK(api_key)

storage_id = "<YOUR STORAGE ID>"
ango_sdk.delete_storage(storage_id=storage_id)
Sample Output

Last updated