Stay organized with collections
Save and categorize content based on your preferences.
This method returns a
waitlist entry for a user based on the provided waitlist entry id.
The Actions Center will call this periodically to get updates on the user's
waitlist entry. Waitlist entries should be retrievable for 30 days from
their creation time.
Request
GetWaitlistEntryRequest
Return value
GetWaitlistEntryResponse
// Get the waitlist entry corresponding to the provided waitlist entry ID.
message GetWaitlistEntryRequest {
// Required. The partner-provided waitlist entry ID to request info for.
string waitlist_entry_id = 1;
}
// Response with the waitlist entry corresponding to the provided
// waitlist entry ID.
message GetWaitlistEntryResponse {
// Required. The partner-provided information about a user’s waitlist entry.
WaitlistEntry waitlist_entry = 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 retrieves a user's waitlist entry information based on the provided waitlist entry ID."],["Waitlist entries are accessible for 30 days after creation and are periodically updated through calls from the Actions Center."],["The request utilizes `GetWaitlistEntryRequest` and returns a `GetWaitlistEntryResponse` containing the `WaitlistEntry` details."],["Sample code showcases a Get request with a waitlist entry ID and a corresponding response including wait estimates, state, and timestamps."]]],[]]