get_location_details
Retrieve detailed information about a specific Kroger store location by providing its unique identifier.
Instructions
Get detailed information about a specific Kroger store location.
Args:
location_id: The unique identifier for the store location
Returns:
Dictionary containing detailed location information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
location_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"location_id": {
"title": "Location Id",
"type": "string"
}
},
"required": [
"location_id"
],
"type": "object"
}