delete_project

imerit_ango.sdk.SDK.

delete_project(project_id)

Delete a specific project from an organization

Parameters

  • project_id: string

Returns:

  • output: dict

    • A dictionary containing the result of 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')
project_id = os.getenv('PROJECT_ID')

ango_sdk = SDK(api_key)

sdk_response = ango_sdk.delete_project(project_id=project_id)
Sample Output
{'data': {'message': 'Project successfully deleted'}, 'status': 'success'}

Last updated