get_asset_builder_templates
imerit_ango.sdk.SDK.
get_asset_builder_templates(project_id)
Returns all of the asset builder templates in the provided project.
This operation can also be accomplished using the get_project function and then by accessing the project's assetBuilderTemplates
field. This method is provided for convenience.
Parameters
project_id: string
The unique identifier for the project. You can find the project ID in the user interface or retrieve it by using the
list_projects
function.
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)
templates = ango_sdk.get_asset_builder_templates(project_id)
Last updated