Retrieves all Properties
Last updated
GET /api/v1/projects/properties
Returns a list of all properties available across project documents. This endpoint does not require authentication.
Status: 200 OK
[
{
"name": "projectName",
"label": "Project Name",
"required": true,
"type": "string"
}
]name
string
Property field name
label
string
Human-readable label for the property
required
boolean
Whether the property is required
type
string
Data type of the property
500 Internal Server Error
Unexpected server failure
Last updated