Python
from playbookNetworkClient import PlaybookClient def setup(self): self.playbookClient = PlaybookClient() self.playbookClient.set_api_key({your api key}) def get_runs(self): teams = self.playbookClient.get_user_runs()
{ "id": "uuid", "platform": "web", "status": "Completed", "progress": 100, "duration": 5, "webhook_url": "url", "run_result": "result url", "team": { "PlaybookTeam": {} }, "owner": { "PlaybookUser": {} }, "workflow": { "PlaybookWorkflow": {} } }
Gets playbook runs.
Your API key. This is required by most endpoints to access our API programatically. You can view your x-api-key using the 'Profile' tab on the website.
Successful Response
The response is of type object.
object