Get all mission logs
GET/mission-logs
Retrieve a list of all mission logs.
Request
Responses
- 200
- 401
- 403
- 500
A list of mission logs
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
_id uuid
missionId uuid
robotRequestId uuid
startedAt date-time
completedAt date-time
status string
Possible values: [pending, active, completed, aborted, cancelled]
completionPercentage number
progress object[]
state string
startedAt date-time
completedAt date-time
message string
completionPercentage number
type string
Possible values: [robotRequest, mission]
createdAt date-time
updatedAt date-time
[
{
"_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"missionId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"robotRequestId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"startedAt": "2025-06-05T13:40:40.635Z",
"completedAt": "2025-06-05T13:40:40.635Z",
"status": "pending",
"completionPercentage": 0,
"progress": [
{
"state": "string",
"startedAt": "2025-06-05T13:40:40.635Z",
"completedAt": "2025-06-05T13:40:40.635Z",
"message": "string",
"completionPercentage": 0
}
],
"type": "robotRequest",
"createdAt": "2025-06-05T13:40:40.635Z",
"updatedAt": "2025-06-05T13:40:40.635Z"
}
]
Unauthorized.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Authentication token not provided."
}
{
"message": "Authentication token not provided."
}
Forbidden.
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Access to this resource is forbidden."
}
{
"message": "Access to this resource is forbidden."
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
- any
{
"message": "Internal Server Error. Please try again later."
}
{
"message": "Internal Server Error. Please try again later."
}
Loading...