File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,6 +115,21 @@ async def fetch_event_listener(self, listener_id: str) -> List[Any]:
115115
116116 return response
117117
118+ async def execute_action_group (
119+ self , actions : [Command ], label = "python-tahoma-api" , priority = False
120+ ) -> List [Any ]:
121+ """
122+ Execute a non-persistent action group
123+ The executed action group does not have to be persisted on the server before use.
124+ Per-session rate-limit : 50 calls per 24 HOURS period for all operations of the same category (exec)
125+ """
126+ payload = {"label" : label , "actions" : actions }
127+ response = await self .__make_http_request ("POST" , f"exec/apply" , payload )
128+
129+ return response
130+
131+ apply_actions
132+
118133 async def __make_http_request (
119134 self , method : str , endpoint : str , payload : Optional [Any ] = None
120135 ) -> Any :
You can’t perform that action at this time.
0 commit comments