Apps
Create an app run
Create and execute a run for an app in the space specified by {spaceId}.
post/api/v1/w/{wId}/spaces/{spaceId}/apps/{aId}/runs
Path parameters
wIdstring required
Unique string identifier for the workspace
spaceIdstring required
ID of the space
aIdstring required
Unique identifier of the app
Request body
Response
App run created and executed successfully
Example response
{
"run": {
"run_id": "4a2c6e8b0d",
"app_id": "9f1d3b5a7c",
"status": {
"run": "succeeded",
"build": "succeeded"
},
"results": {},
"specification_hash": "8c0a4e6d2f",
"traces": [
[
{
"timestamp": 1234567890,
"trace": {}
}
]
]
}
}