LANGUAGE: Language
A language reference record with ISO codes for standardised language identification across the platform.
Default definition. This article describes the default
LANGUAGE 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 LANGUAGE.Entity properties
| Property | Value |
|---|---|
| Entity code | LANGUAGE |
| Display name | Language |
| Plural | Languages |
| Level | 250 |
Use cases
LANGUAGE is a reference data entity providing standardised language information. Like COUNTRY, it uses the simple grid view and stores ISO code pairs: iso2 for the ISO 639-1 two-letter code (e. g.
Fields
Language
| Field | Type | Required | Notes |
|---|---|---|---|
name | text | Yes | Name |
iso2 | text | Yes | 2 digit ISO |
iso3 | text | Yes | 3 digit ISO |
Relationships
- No declared relationships in the default definition.
Creating a Language via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "LANGUAGE",
"level": 250,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "Example",
"iso2": "Example",
"iso3": "Example"
}
Listing Languages records
# All languages in your tenant
GET /v1/entities/LANGUAGE/SUB