PRODDESC: Product Description
The PRODDESC entity represents a single description bullet point for a product, shown during sales meetings.
Default definition. This article describes the default
PRODDESC definition shipped with DemandFlow. Administrators can add, remove, rename, or re-type fields, change which ones are required, and alter the layout from the Definitions screen in Settings. Your tenant's current schema may differ from what is shown here. To read the current definition at any time, GET the DEFINITION object whose id matches PRODDESC.Entity properties
| Property | Value |
|---|---|
| Entity code | PRODDESC |
| Display name | Product Description |
| Plural | Product Descriptions |
| Level | 100001 |
Use cases
Child entity of PROD via comboKey (SUB|PROD). Each record is one description line item displayed as a bullet point in the product pitch view.
Fields
General
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Description. |
sortOrder | number | Sort order. |
Relationships
- No declared relationships in the default definition.
Creating a Product Description via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "PRODDESC",
"level": 100001,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"sortOrder": 100
}
Listing PRODDESC records
# All product descriptions in your tenant
GET /v1/entities/PRODDESC/SUB