Skip to main content

List Properties

GET /v2/product/property

Retrieves a collection of product properties and their optional predefined values. Each item represents either a root property (no value) or a specific selectable value for that property. Results include identifiers, tenant scope, sort order, and timestamps.

Headers

  • \~Accept - Custom header for ~Accept (Example: application/json)

Response Example

[
{
"_id": "prop-id-1",
"id": "prop-id-1",
"name": "Memory",
"tenant": "tenant-id-1",
"orderIndex": 0,
"created": "2025-08-29T10:56:02.607Z",
"updated": "2025-08-29T10:56:02.607Z"
},
{
"_id": "prop-id-2",
"id": "prop-id-2",
"name": "Memory",
"tenant": "tenant-id-1",
"value": "16GB RAM",
"orderIndex": 3,
"created": "2025-08-29T10:56:35.471Z",
"updated": "2025-08-29T10:56:35.471Z"
},
{
"_id": "prop-id-3",
"id": "prop-id-3",
"name": "Size",
"tenant": "tenant-id-1",
"orderIndex": 2,
"created": "2025-06-19T23:17:00.822Z",
"updated": "2025-06-19T23:17:00.822Z"
},
{
"_id": "prop-id-4",
"id": "prop-id-4",
"name": "Size",
"tenant": "tenant-id-1",
"value": "14-inch",
"orderIndex": 3,
"created": "2025-06-19T23:17:20.556Z",
"updated": "2025-06-19T23:17:20.556Z"
}
]