GET
/
runs
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": {}
  }
}

Headers

x-api-key
string
required

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.

Response

200
application/json
Successful Response
id
string
platform
string
status
string
progress
integer
duration
integer
webhook_url
string
run_result
string
team
object
owner
object
workflow
object