This endpoint queries theDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/MateoNavarroMN/Balsamoa-Backend/llms.txt
Use this file to discover all available pages before exploring further.
vista_catalogo_productos database view and returns every product in the catalog, ordered from newest to oldest by ID. Each object in the response array is a fully denormalized product record that includes the category name, the principal image URL, a summed stock total, a per-size stock breakdown, all hex color codes, the full image list with ordering, variant foreign-key ID arrays, and the complete variant matrix. No query parameters are required or supported.
Request
Method:GETPath:
/api/v1/admin/productosPath parameters: none
Query parameters: none
Request body: none
Response
200 — Success
Returns a JSON array of product objects. An empty catalog returns an empty array[].
Response Fields
Unique numeric identifier for the product, assigned by the database.
Display name of the product.
Optional free-text description.
null if not set.Foreign key referencing the
categorias table.Human-readable category name joined from the
categorias table (e.g. "Hoodie", "Remera").Product price in ARS as a decimal string with two places (e.g.
"40000.00").Whether the product is marked as featured and should appear in highlighted sections of the store.
Whether the product is visible to public store endpoints.
false means the product is soft-deleted.ISO 8601 timestamp of when the product row was inserted.
Public URL of the image with the lowest
orden value. null if no images have been attached.Sum of
stock across all variants of this product.Aggregated stock per size. Each element has a
talle (size label) and a cantidad (total units across all colors for that size).Flat array of unique hex color codes for all variants of this product (e.g.
["#F5F5F5", "#1A1A1A"]).All product images ordered by
orden ascending. Each element contains a url string and an orden integer.Sorted array of
talle_id values that appear in at least one variant of this product.Sorted array of
color_id values that appear in at least one variant of this product.Full variant matrix. Each element contains
talle_id, color_id, stock, and activo.500 — Database Error
Returned when the query againstvista_catalogo_productos fails.