IND: Industry
An industry classification record used to categorise clients and companies by their business sector.
Default definition. This article describes the default
IND 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 IND.Entity properties
| Property | Value |
|---|---|
| Entity code | IND |
| Display name | Industry |
| Plural | Industries |
| Level | 11000 |
Use cases
IND provides a controlled vocabulary of industry categories that can be assigned to CLIENT (via the ind objectLookup) and COM (via the industry objectLookup) records. This enables filtering, reporting, and segmentation by industry across the CRM. The entity is deliberately simple with just a name and comments field, as industry names are typically standardised and do not require complex structures.
Fields
Basics
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name. |
comments_comment | text (multi-line) |
Relationships
- No declared relationships in the default definition.
Creating a Industry via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "IND",
"level": 11000,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"comments_comment": "..."
}
Listing Industries
# All records in your tenant
GET /v1/entities/IND/SUB:<your-sub-id>