Stay organized with collections
Save and categorize content based on your preferences.
This method returns future bookings for a user at any merchant. This method
should not return past bookings or cancelled bookings.
Request
ListBookingsRequest
Return value
ListBookingsResponse
// Request to list all bookings for a user
message ListBookingsRequest {
// ID of the user (required)
string user_id = 1;
}
// Response for the ListBookings RPC with all bookings for the requested user.
message ListBookingsResponse {
// All bookings of the user (required)
repeated Booking bookings = 1;
}
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-09 UTC."],[[["This method fetches upcoming bookings for a specific user at any merchant, excluding past or cancelled bookings."],["The request requires the user's ID (`user_id`) to retrieve their booking information."],["The response provides a list of all active bookings (`bookings`) associated with the specified user."]]],[]]