BatchAvailabilityLookup का तरीका

जब BatchCheckAvailabilityLookup जारी किया जाता है, तो पार्टनर बुकिंग सर्वर इस बात की पुष्टि करता है कि जिन अपॉइंटमेंट स्लॉट के लिए अनुरोध किया गया है वे फ़िलहाल मान्य हैं और उपलब्ध हैं. ऐक्शन सेंटर इसका इस्तेमाल यह पक्का करने के लिए कर सकता है कि रिज़र्वेशन फ़्लो के दौरान उपयोगकर्ताओं को सिर्फ़ मौजूदा स्लॉट दिए गए हों.

अनुरोध करें

batAvailabilityLookupRequest

रिटर्न वैल्यू

BatchAvailabilityLookupResponse

कैननिकल gRPC गड़बड़ी कोड

  • INVALID_ARGUMENT (अमान्य मर्चेंट आईडी, सेवा आईडी या स्लॉट के समय की खास जानकारी)
message BatchAvailabilityLookupRequest {
  // ID of the merchant.
  string merchant_id = 1;

  // Multiple slot times to be checked for availability. All queried times apply
  // to the same merchant_id and service_id.
  repeated SlotTime slot_time = 3;

  reserved 2;
}

// Response for the [ext.maps.booking.partner.v2.BatchAvailabilityLookupRequest]
// RPC with the availabilities of the appointment slots.
message BatchAvailabilityLookupResponse {
  // The availabilities for the requested SlotTime entries. There must be
  // exactly one slot_time_availability for each SlotTime entry in the
  // [ext.maps.booking.partner.v2.BatchAvailabilityLookupRequest].
  repeated SlotTimeAvailability slot_time_availability = 1;
}

स्लॉटटाइम मैसेज, उन स्लॉट के बारे में बताता है जिनके लिए पार्टनर साइड पर क्वेरी की जाती है.

// Identifies a Slot service_id and start time and optionally, the Slot duration
// and resources, for a specific merchant. Note that this differs from the
// definition of Slot, as it does not include merchant_id identifier.
message SlotTime {
  // ID of the service. (required)
  string service_id = 5;

  // Start time of the appointment slot in seconds of UTC time since Unix epoch
  // (required)
  int64 start_sec = 1;

  // Duration of the appointment slot in seconds (optional)
  int64 duration_sec = 2;

  // Opaque tag that identifies the availability slot and matches the value
  // provided in the availability feed (optional)
  string availability_tag = 3;

  // The set of resources that specifies the appointment slot, e.g. by
  // indicating the staff member and room selected by the user, or party size
  // for dining slots (optional)
  Resources resources = 4;
}

जवाब के तौर पर, बुकिंग सर्वर,पाट समय के उपलब्ध होने की जानकारी देने वाले मैसेज दिखाता है.

message SlotTimeAvailability {
  // The SlotTime for which availability was checked.
  SlotTime slot_time = 1;

  // Whether the requested SlotTime is available
  bool available = 2;
}