GET /api/stores/meta-data
GET
/api/stores/meta-dataAuthorizations
Parameters
Query Parameters
version
The version of the cache that the user has saved locally
Typestring
hasChains
Whether the user has cached store chains locally
Typestring
Responses
Success.
JSON
{
"maxCountPickupSlot": 0,
"groceries": [
{
"id": 0,
"name": "string"
}
],
"storeChains": [
{
"id": 0,
"name": "string"
}
],
"categories": [
{
"id": 0,
"name": "string"
}
],
"status": [
{
"id": 0,
"name": "string"
}
],
"weight": [
{
"id": 0,
"name": "string"
}
],
"convinceStatus": [
{
"id": 0,
"name": "string"
}
],
"publicTimes": [
{
"id": 0,
"name": "string"
}
],
"version": 0
}
GET
/api/stores/meta-dataSamples
cURL
curl -X GET http://localhost/api/stores/meta-data
JavaScript
fetch("http://localhost/api/stores/meta-data")
.then(response => response.json())
.then(data => console.log(data));
PHP
file_get_contents("http://localhost/api/stores/meta-data");
Python
import requests
response = requests.get("http://localhost/api/stores/meta-data")
print(response.json())