get.runs | R Documentation |
Retrive a list of all PEcAn runs from the database that belong to a specific workflow
get.runs(server, workflow_id, offset = 0, limit = 50)
server |
Server object obtained using the connect() function |
workflow_id |
ID of the PEcAn workflow for which all runs are to be retrieved |
offset |
The number of workflows to skip before starting to collect the result set. |
limit |
The number of workflows to return (Available values : 10, 20, 50, 100, 500) |
Response obtained from the /api/runs/
endpoint with relevant query parameters
Tezan Sahu
server <- connect(url="http://pecan.localhost:80", username="carya", password="illinois")
# Get details of all runs for the workflow with ID '1000009172'
res <- get.runs(server, workflow_id=1000009172)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.