Get delivery timeline
Returns governed delivery milestones and workstreams for a project. This is a read-only projection; advisory geometry does not move execution coordinates.
GET
/api/v1/delivery/timelineAuthorization
delivery-timeline:readapi key scoperequiredRequired scope when calling with an API key.
Query parameters
project_idstringrequiredProject ID in the resolved workspace
Example: proj_abc123
Request
curl -X GET "https://www.digitalstack360.com/api/v1/delivery/timeline?project_id=proj_abc123" \
-H "Authorization: Bearer $DS_API_KEY"Examples use a placeholder key from your environment. Store your key in $DS_API_KEY — never commit it.
Response
200 OK
{
"data": {
"project_id": "proj_abc123",
"milestones": [],
"workstreams": [],
"source_mode": {
"mode": "ds_native"
},
"generated_at": "2026-07-15T14:22:04Z"
}
}Errors
401
missing_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
403
scope_insufficientKey lacks delivery-timeline:read scope
404
project_not_foundProject does not exist in the resolved workspace