π’ GET - Products
Overview
Architecture for the Products endpoints
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Architecture for the Products endpoints
| Method | Path | Description |
|---|---|---|
| GET | /products/{business_id} | Get all products |
| POST | /products | Add a new product |
| DELETE | /products/{business_id}/{product_id} | Delete a product |
{
"business_id": "org-slug-123",
"products": [
{
"id": "uuid-...",
"product_id": "product-a",
"name": "Product A",
"url": "https://acme.com/product-a",
"favicon_url": null,
"boosted_page_count": 25,
"created_at": "2024-01-15T10:30:00Z"
}
],
"total": 1
}
src/app/apis/settings_tracking/products/routes.py