POSTTEMP: Post Template
The POSTTEMP entity represents post template records in DemandFlow.
Default definition. This article describes the default
POSTTEMP 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 POSTTEMP.Entity properties
| Property | Value |
|---|---|
| Entity code | POSTTEMP |
| Display name | Post Template |
| Plural | Post Templates |
| Level | 805 |
Use cases
General-purpose post templates records.
Fields
General
| Field | Type | Required | Notes |
|---|---|---|---|
name | termeditor | Yes | Content. |
status | enum | Status. Valid ids: active (Active), inactive (Inactive). |
Additional panels
- imagesEditor panel.
Relationships
- No declared relationships in the default definition.
Creating a Post Template via the API
POST /v1/objects
Authorization: Bearer <your-pat>
Content-Type: application/json
{
"entity": "POSTTEMP",
"level": 805,
"comboKey": "SUB:<your-sub-id>|ENT:",
"name": "",
"status": "active"
}
Listing POSTTEMP records
# All post templates in your tenant
GET /v1/entities/POSTTEMP/SUB