Get booking activities
GET/v1/bookings/:bookId/activities
Retrieve all activities/notes for a specific booking
Supported roles
- Partner
- Fleet manager
Request
Path Parameters
bookId stringrequired
ID of booking
Responses
- 200
- 400
- 401
- 404
Successful operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
bookId string
activities object[]
id string
Activity ID
bookId string
Booking ID
content string
Activity content
createdDate date-time
Activity creation date
permission object
operator boolean
Visible to operators
driver boolean
Visible to drivers
passenger boolean
Visible to passengers
total integer
Total number of activities
{
"bookId": "12345",
"activities": [
{
"id": "507f1f77bcf86cd799439011",
"bookId": "12345",
"content": "Driver called passenger to confirm pickup location",
"createdDate": "2025-10-15T10:30:00.000Z",
"permission": {
"operator": true,
"driver": true,
"passenger": true
}
}
],
"total": 3
}
Validation error
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "string"
}
Booking not found
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "string"
}
Loading...