List durable lifecycle events for a run.
curl --request GET \
--url http://localhost:3001/v1/training/runs/{run_id}/events \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3001/v1/training/runs/{run_id}/events"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3001/v1/training/runs/{run_id}/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"id": "<string>",
"at": "2023-11-07T05:31:56Z",
"kind": "<string>",
"payload": {}
}
]
}{
"error": {
"code": "<string>",
"message": "<string>"
},
"request_id": "<string>",
"funding_source": "platform"
}unified-training
List durable lifecycle events for a run.
GET
/
v1
/
training
/
runs
/
{run_id}
/
events
List durable lifecycle events for a run.
curl --request GET \
--url http://localhost:3001/v1/training/runs/{run_id}/events \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:3001/v1/training/runs/{run_id}/events"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:3001/v1/training/runs/{run_id}/events', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"items": [
{
"id": "<string>",
"at": "2023-11-07T05:31:56Z",
"kind": "<string>",
"payload": {}
}
]
}{
"error": {
"code": "<string>",
"message": "<string>"
},
"request_id": "<string>",
"funding_source": "platform"
}