ListBookings 메서드

요청

ListBookingsRequest

반환값

ListBookingsResponse

모든 예약이 아닌 사용자의 향후 예약만 반환하면 됩니다.

표준 gRPC 오류 코드

  • NOT_FOUND(요청된 사용자 ID를 파트너가 알 수 없는 경우)
// Request to list all upcoming bookings for a user
message ListBookingsRequest {
  // ID of the user (required)
  string user_id = 1;
}

// Response for the [ext.maps.booking.partner.v2.ListBookings] RPC with all
// upcoming bookings for the requested user
message ListBookingsResponse {
  // All bookings of the user (required)
  repeated Booking bookings = 1;
}