check_location_exists
Verify the existence of a specific store location in Kroger's system by providing its unique identifier. Returns a dictionary confirming the location's status.
Instructions
Check if a location exists in the Kroger system.
Args:
location_id: The unique identifier for the store location
Returns:
Dictionary indicating whether the location exists
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"
}