Stay organized with collections
Save and categorize content based on your preferences.
Request
CreateLeaseRequest
Return value
CreateLeaseResponse
Requirements:
lease_id must be created by the partner backend and set in the
CreateLeaseResponse.
lease_expiration_time must be set in the CreateLeaseResponse.
If the resources field is specified in the CreateLeaseRequest, then it must
be set in the CreateLeaseResponse, and match the CreateLeaseRequest.
All other fields in the CreateLeaseResponse must be set and match the
CreateLeaseRequest.
Canonical gRPC error codes
INVALID_ARGUMENT (invalid merchant ID, service ID, client reference or slot time specification)
ALREADY_EXISTS (if the client already has a lease on the slot)
RESOURCE_EXHAUSTED (if the slot is not available)
// 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.messageCreateLeaseRequest{// The lease to be created with information about the appointment slotLeaselease=1;}// Response for the [ext.maps.booking.partner.v0.CreateLease] RPC with the// created [ext.maps.booking.partner.v0.Lease]messageCreateLeaseResponse{// The created [ext.maps.booking.partner.v0.Lease]Leaselease=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-31 UTC."],[[["Partners must create and set `lease_id` and `lease_expiration_time` in the `CreateLeaseResponse`."],["`CreateLeaseResponse` must mirror the `CreateLeaseRequest`, including the `resources` field if provided, and all other fields."],["Potential errors include `INVALID_ARGUMENT`, `ALREADY_EXISTS`, and `RESOURCE_EXHAUSTED` for various invalid input or booking conflicts."],["The `CreateLeaseRequest` initiates a lease creation for a specific appointment slot, while the `CreateLeaseResponse` returns the created lease details."],["The backend may adjust the lease expiration time in the response."]]],[]]