This endpoint is used to mark a Blueprint Instance as completed. It will update the status of the Blueprint Instance to ‘COMPLETED’ and log the completion event.
PUT
/
blueprint-instance
/
{blueprint_instance_id}
/
complete-instance
Python (SDK)
Copy
Ask AI
from meibelai import Meibelaiimport oswith Meibelai( api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""),) as m_client: res = m_client.blueprints.instances.complete_blueprint_instance(blueprint_instance_id="<id>", result="<value>") # Handle response print(res)