API Documentation
JSON Item Ingestion
API Documentation
JSON Item Ingestion
The json items are ingested into the system by uploading through an API.
JSON File Reference
Here’s a sample of valid JSON for sending to the API for ingest.
[
{
"name": "12 Dove Relaxing Lavender Oil Chamomile Body Wash",
"category": "Personal Care",
"size": "24 oz",
"quantity": 10,
"price": 899,
"external_id": "10001",
"description": "Get clean and fresh",
"brand": "Dove",
"unit_count": "1",
"location": "3A",
"active": true
},
{
"name": "5-Hour Energy Shot Pomegranate",
"category": "Personal Care",
"size": "1.93 oz",
"quantity": 20,
"price": 374,
"external_id": "10002",
"description": "Energy in pomegranate flavor",
"brand": "5-Hour Energy",
"unit_count": "1",
"location": "Counter",
"active": true
},
{
"name": "7Up",
"category": "Soda",
"size": "1 l bottle",
"quantity": 30,
"price": 289,
"external_id": "10003",
"description": "Fresh and delicious",
"brand": "7up",
"unit_count": "1",
"location": "Freezer-4",
"active": true
},
{
"name": "7Up Lemon Lime Soda",
"category": "Soda",
"size": "20 oz bottle",
"quantity": 40,
"price": 249,
"external_id": "10004",
"description": "Thirst quenching",
"brand": "7up",
"unit_count": "1",
"location": "Freezer-2",
"active": true
},
{
"name": "7 Days Soft Croissant Chocolate Filling",
"category": "Snacks",
"size": "6 ct",
"quantity": 50,
"price": 249,
"external_id": "10005",
"description": "Flaky and buttery goodness",
"brand": "7 Days",
"unit_count": "6",
"location": "2B",
"active": true
}
]
On this page