Python
from meibelai import Meibelai import os with Meibelai( api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""), ) as m_client: res = m_client.blueprint_instances.get_activities_by_blueprint_instance(blueprint_instance_id="<id>", offset=0, limit=10, sort_by="<value>", sort_order="<value>") # Handle response print(res)
{ "data": [ { "id": "<string>", "blueprint_instance_id": "<string>", "activity_type": "<string>", "status": "pending", "start_time": "2023-11-07T05:31:56Z", "end_time": "2023-11-07T05:31:56Z", "input_data": {}, "output_data": {}, "error": "<string>", "group_id": "<string>" } ] }
Number of items to skip
x >= 0
Maximum number of items to return
1 <= x <= 100
Field to sort by
Sort order (asc or desc)
Successful Response
GetActivitiesResponse