Get property by ID
Retrieve a single property by its unique identifier.
Overview
Returns detailed information about a specific property, including its value, metadata, references, and versioning information.
Versioning
- Omit or null
version: returns the draft property. - Integer (e.g.
version=5): returns the property as of that product version. baseline: returns the property as of the product’s baseline version.
Property Type Detection
The type parameter is optional. If not provided, the system will automatically
search across all property tables (numeric, formula, matrix, text, date, status) to find the property.
Performance Note
If you know the property type, specifying it via the type parameter will improve
performance by avoiding searches across multiple property tables.
Documentation Index
Fetch the complete documentation index at: https://docs.poelis.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Enter your API key. Example: Bearer poelis_api_...
Path Parameters
Query Parameters
Product version number (integer) or 'baseline'. Omit or null for draft property.
null
Optional property type: numeric, formula, matrix, text, date, or status. If not provided, will search all types. Case-insensitive.
"numeric"
Response
Complete property details including value, metadata, references, createdBy, updatedBy (id, userName, imageUrl), createdAt, and updatedAt (ISO 8601) when available.
Unified public property representation.
Human-readable property ID
numeric, text, date, status, matrix, formula Property value. Numeric: plain number or matrix (category/display_unit always set; matrix value string e.g. "[[1,2,3],[4,5,6]]") or formula (category/display_unit never set; value is the result of the computation including unit if any). Text: string. Date: string, ISO date (e.g. "2025-01-29"). Status: string, one of "Draft", "Under Review", "Done".
Category. For numeric (plain number or matrix) always set; for formula never set.
Display unit. For numeric (plain number or matrix) always set; for formula never set.
References to source documents for this property
Formula expression for numeric properties that calculate their value from other properties. Uses @{property_id} syntax to reference dependencies. The value field holds the result of this computation, including unit if any.
User who created the property
{
"id": "auth0|550e8400-e29b-41d4-a716-446655440000",
"imageUrl": "https://example.com/avatar.png",
"userName": "Jane Doe"
}ISO 8601 creation timestamp
ISO 8601 last-update timestamp
User who last updated the property
{
"id": "auth0|550e8400-e29b-41d4-a716-446655440000",
"imageUrl": "https://example.com/avatar.png",
"userName": "Jane Doe"
}