get_pickup_stores_near_location
Description
Geocodes a user-provided location (city, ZIP, address, landmark…) and returns nearby pickup-capable endpoints. It is used in pickup-related discovery flows (CKC, ROPIS…).
When to Use
Customer provides a city or ZIP and wants nearby stores.
Preparing a Click & Collect or ROPIS option.
Pre-checking store availability.
Workflow
Ask for a free-form location string.
Call tool → geocodes + returns stores.
Present store list to user.
Customer selects store → used for
create_ropis_order.
Arguments
Field | Type | Required |
|---|---|---|
location | string | Yes |
radius | integer | No (default 100) |
Input Schema
{
"location": "Paris",
"radius": 100
}
Output
Object containing store list.
Sample Prompts
“Find pickup stores near Lyon.”
“List stores within 30 km of 33000 Bordeaux.”