List all executions
import botfleet
botfleet.api_key = "YOUR_API_KEY"
botfleet.Execution.list()
Returns a CursorPaginatedResource
object.
Filtering
You can filter the results by bot_id
, bot_executor_job_id
and bot_executor_cron_job_id
.
botfleet.Execution.list(
bot_id="ef14f43e-02fc-4b78-902b-9b37b485d3a1,
bot_executor_job_id="f2435988-b861-45b5-832b-3ffcb91914bf",
bot_executor_cron_job_id="99f2070a-7a4e-4e8e-83a4-0627e33a255f",
)