Stay organized with collections
Save and categorize content based on your preferences.
The client uses DeleteWaitlistEntry delete an existing waitlist entry.
If updating a booking fails due to any business logic error, the error
should be populated in the response. Delete for non-existing resources
should return
HTTP status code 404 (Not Found).
Request
DeleteWaitlistEntryRequest
Return value
google.protobuf.Empty (an empty message)
// Cancel the user's entry in the waitlist.messageDeleteWaitlistEntryRequest{// Required. The partner-provided ID for the waitlist entry to be deleted.stringwaitlist_entry_id=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 2025-05-20 UTC."],[[["\u003cp\u003eThe \u003ccode\u003eDeleteWaitlistEntry\u003c/code\u003e method allows clients to remove an existing waitlist entry.\u003c/p\u003e\n"],["\u003cp\u003eRequests must include the \u003ccode\u003ewaitlist_entry_id\u003c/code\u003e in the request body.\u003c/p\u003e\n"],["\u003cp\u003eSuccessful deletion returns an empty response, while attempts to delete non-existent entries result in a 404 (Not Found) error.\u003c/p\u003e\n"],["\u003cp\u003eBusiness logic errors during deletion will be indicated in the response.\u003c/p\u003e\n"]]],["The `DeleteWaitlistEntry` method removes a waitlist entry using its partner-provided `waitlist_entry_id`. A failed update due to business logic errors will include the error in the response. Deleting a non-existent entry results in a 404 (Not Found) HTTP status code. The request requires a `waitlist_entry_id`, and successful deletion returns an empty message. A sample request uses a `waitlist_entry_id`, like \"MYS-1668739060\", with an empty JSON object returned on success.\n"],null,["# DeleteWaitlistEntry method\n\nThe client uses DeleteWaitlistEntry delete an existing waitlist entry.\n\nIf updating a booking fails due to any business logic error, the error\nshould be populated in the response. Delete for non-existing resources\nshould return\n[HTTP status code](/actions-center/verticals/reservations/waitlists/reference/booking-server-api-rest/e2e-methods/status-codes) 404 (Not Found).\n\n**Request**\n\nDeleteWaitlistEntryRequest\n\n**Return value**\n\ngoogle.protobuf.Empty (an empty message) \n\n```scilab\n// Cancel the user's entry in the waitlist.\nmessage DeleteWaitlistEntryRequest {\n // Required. The partner-provided ID for the waitlist entry to be deleted.\n string waitlist_entry_id = 1;\n}\n```\n\nDeleteWaitlistEntry samples\n---------------------------\n\n### Delete request\n\n```scdoc\n{ \"waitlist_entry_id\": \"MYS-1668739060\" }\n```\n\n### Delete response\n\n```text\n{}\n```"]]