Generate sprint planning suggestions
Generates citation-gated planning intents for review. This is proposal-only: it does not write to sprint membership, milestones, capacity, dependencies, or work items.
POST
/api/v1/projects/:projectId/sprint-planning/suggestionsAuthorization
sprints:readapi key scoperequiredRequired scope when calling with an API key.
Path parameters
projectIdstringrequiredProject ID in the resolved workspace
Example: proj_abc123
Request body
confirmbooleanrequiredMust be true to acknowledge suggestion generation.
Example request
{
"confirm": true
}Request
curl -X POST "https://www.digitalstack360.com/api/v1/projects/proj_abc123/sprint-planning/suggestions" \
-H "Authorization: Bearer $DS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"confirm":true}'Examples use a placeholder key from your environment. Store your key in $DS_API_KEY — never commit it.
Response
200 OK
{
"data": {
"action_kind": "suggest_next_planning_moves",
"intents": [],
"observations": [
"Planning Readiness: 70% (nearly)."
],
"readiness": {
"score": 70,
"verdict": "nearly",
"computed_at": "2026-07-15T14:22:04Z"
},
"computed_at": "2026-07-15T14:22:04Z"
},
"meta": {
"webhook_event_type": "sprint_planning.suggestions_generated",
"authority": "proposal_only_no_substrate_writes"
}
}Errors
401
missing_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
403
scope_insufficientKey lacks sprints:read scope
400
confirmation_requiredconfirm must be true
404
project_not_foundProject does not exist in the resolved workspace