ts.dmd.get
Retrieve a demand by ID.
Retrieve a demand by ID.
Requires authentication
Description
Retrieves detailed information about a specific demand, including its type, priority, status, and any linked endeavour.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Yes | Demand ID |
Response
Returns the full demand object.
{
"created_at": "2026-02-09T10:00:00Z",
"description": "Users need a dark theme option for reduced eye strain.",
"id": "dmd_a1b2c3d4e5f6...",
"metadata": {},
"priority": "high",
"status": "open",
"title": "Add dark mode support",
"type": "feature",
"updated_at": "2026-02-09T10:00:00Z"
}
Errors
| Code | Description |
|---|---|
not_authenticated | No active login for this session |
not_found | Demand with this ID does not exist |
Examples
Get demand by ID
Request:
{
"id": "dmd_a1b2c3d4e5f6..."
}
Response:
{
"created_at": "2026-02-09T10:00:00Z",
"id": "dmd_a1b2c3d4e5f6...",
"priority": "high",
"status": "open",
"title": "Add dark mode support",
"type": "feature",
"updated_at": "2026-02-09T10:00:00Z"
}