השיטה CreateLease

בקשה

CreateLeaseRequest

ערך המוחזר

CreateLeaseResponse

דרישות:

  • המערכת לקצה העורפי של השותף צריכה ליצור את lease_id ולהגדיר אותו ב-CreateLeaseResponse.
  • צריך להגדיר את lease_expiration_time ב-CreateLeaseResponse.
  • אם השדה resources צוין ב-CreateLeaseRequest, צריך להגדיר אותו ב-CreateLeaseResponse ולהתאים אותו ל-CreateLeaseRequest.
  • כל שאר השדות ב-CreateLeaseResponse חייבים להיות מוגדרים ולהתאים ל-CreateLeaseRequest.

קודי שגיאה קנונים של gRPC

  • INVALID_ARGUMENT (מזהה מוכר/ת, מזהה שירות, פרטי לקוח או ציון זמן של משבצת לא תקינים)
  • ALREADY_EXISTS (אם ללקוח כבר יש זיכיון על המשבצת)
  • RESOURCE_EXHAUSTED (אם המשבצת לא זמינה)
// Request to create a [ext.maps.booking.partner.v0.Lease] for a slot in the
// inventory.  The expiration time in the returned Lease may be modified by the
// backend, e.g. if the requested lease period is too long.
message CreateLeaseRequest {
  // The lease to be created with information about the appointment slot
  Lease lease = 1;
}

// Response for the [ext.maps.booking.partner.v0.CreateLease] RPC with the
// created [ext.maps.booking.partner.v0.Lease]
message CreateLeaseResponse {
  // The created [ext.maps.booking.partner.v0.Lease]
  Lease lease = 1;
}