List Booking Participants
GET/booking-participants
List Booking Participants
Request
Query Parameters
limit number
Number of items to return
offset number
Number of items to skip
filter.bookingId string
Booking
filter.memberId string
Member
filter.role string
Role
filter.notes string
Notes
filter.tripId string
Trip
filter.otherMemberId string
Other Member
include string[]
Possible values: [bookingId, memberId, role, notes, tripId, otherMemberId]
Responses
- 200
List of Booking Participants
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
bookingId string
Booking
memberId string
Member
role string
Role
notes string
Notes
tripId string
Trip
otherMemberId string
Other Member
[
{
"bookingId": "string",
"memberId": "string",
"role": "string",
"notes": "string",
"tripId": "string",
"otherMemberId": "string"
}
]
Loading...