Product Series
A Product Series represents a broad grouping of products that share common characteristics or belong to the same product line. It helps organize products logically within the Lumytic platform. Learn more about adding a series
Get Published Series
Retrieves a complete list of all published product series available in your Lumytic instance. This endpoint is useful for displaying available series in dashboards, catalogs, or integrating with external systems.
Endpoint:
GET
/product_development/v1/series
Headers:
- ApiKey: YOUR_API_KEY_HERE
- Content-Type: application/json
- Accept-Language: en
Request Example
curl -X GET "https://api.lumytic.com/ product_development/v1/series" \
-H "ApiKey: YOUR_API_KEY_HERE" \
-H "Content-Type: application/json"
-H "Accept-Language: en"
Response Example
{
"success": true,
"message": "all series fetched successfully.",
"data": [
{
"ID": "2",
"logo": "product_series_logo.svg",
"color": "#e2b557",
"profit": "10",
"Name": "Product Line 2",
"is_published": "1",
"has_category": true,
"categories": [
{
"id": "8",
"name": "bulkhead lights "
},
{
"id": "2",
"name": "Downlight"
},
]
},{
"ID": "1",
"logo": "product_series_logo.svg",
"color": "#e2b557",
"profit": "10",
"Name": "Product Line 1",
"is_published": "1",
"has_category":false,
"categories": [ ]
}
]
}
Possible Errors
| Code | Message | Description |
|---|---|---|
| 400 | Bad Request | Invalid query parameters provided |
| 401 | Unauthorized | Missing or invalid API key. |
| 404 | Not found | No series found matching the criteria. |
| 500 | Internal Server Error | An unexpected error occurred on the server. |