GET
/
api
/
v1
/
trajectories
/
{id}
/
changes
Get Trajectory Changes
curl --request GET \
  --url https://agent-platform.staging.hcompanyprod.fr/api/v1/trajectories/{id}/changes \
  --header 'Authorization: Bearer <token>'
{
  "status": "pending",
  "started_at": "2023-11-07T05:31:56Z",
  "finished_at": "2023-11-07T05:31:56Z",
  "error": "<string>",
  "live_view_url": "<string>",
  "new_events": []
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Query Parameters

from_index
integer
default:0

Response

Successful Response

Changes to a trajectory.

status
enum<string>
required

Status of a trajectory execution.

Available options:
pending,
running,
paused,
completed,
timed_out,
failed,
interrupted
started_at
string<date-time> | null
finished_at
string<date-time> | null
error
string | null
live_view_url
string | null
new_events
TrajectoryEvent · object[]