BatchGetWaitstimas
Questo esempio illustra un caso in cui un ristorante di solito consente party_size
valori da 2 a 10, ma al momento della richiesta non è più possibile ospitare party_size
valori superiori a 7 (ad esempio, vicino al tempo di chiusura) e party_size
2 non ha tempo di attesa.
Recupero richiesta di attesa
{ "merchant_id": "dining-1", "party_size": [2, 3, 4, 5, 6, 7, 8, 9, 10], "service_id": "reservation" }
Ricevi risposta all'attesa
{ "waitlist_status": "OPEN", "wait_estimate": [ { "party_size": 2, "wait_length": {} }, { "party_size": 3, "wait_length": { "parties_ahead_count": 3 } }, { "party_size": 4, "wait_length": { "parties_ahead_count": 3 } }, { "party_size": 5, "wait_length": { "parties_ahead_count": 3 } }, { "party_size": 6, "wait_length": { "parties_ahead_count": 3 } }, { "party_size": 7, "wait_length": { "parties_ahead_count": 3 } } ] }
CreazioneVoce lista d'attesa
Crea richiesta
{ "idempotency_token": "14620365692592881354", "merchant_id": "dining-1", "party_size": 3, "service_id": "reservation", "user_information": { "family_name": "John", "given_name": "Smith", "telephone": "+81 80-1111-2222", "user_id": "123456789" } }
Crea risposta
{ "waitlist_entry_id": "MYS-1668739060" }
RecuperoLista d'attesa
Recupera richiesta
{ "waitlist_entry_id": "MYS-1668739060" }
Ricevi risposta
{ "waitlist_entry": { "wait_estimate": { "party_size": 3, "wait_length": { "parties_ahead_count": 3 } }, "waitlist_entry_state": "WAITING", "waitlist_entry_state_times": { "created_time_seconds": 1234567890 } } }
EliminazioneVoce lista d'attesa
Elimina richiesta
{ "waitlist_entry_id": "MYS-1668739060" }
Elimina risposta
{}