List engagement projects
Lists projects linked to an engagement, filtered to the projects the caller can see — this traversal never widens what /api/v1/projects would return the same credential. Compact identity summaries only.
GET
/api/v1/engagements/:id/projectsAuthorization
engagements:readapi key scoperequiredRequired scope when calling with an API key.
Path parameters
idstringrequiredEngagement UUID
Example: eng_abc123
Query parameters
limitnumberoptionalMaximum rows, clamped to 1–100
Example: 25
Request
curl -X GET "https://www.digitalstack360.com/api/v1/engagements/eng_abc123/projects" \
-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": [
{
"id": "proj_abc123",
"name": "Acme replatform",
"slug": "acme-replatform",
"status": "active",
"client_name": "Acme",
"created_at": "2026-06-01T00:00:00Z",
"updated_at": "2026-07-15T14:22:04Z"
}
],
"meta": {
"count": 1,
"truncated": false
}
}Errors
401
missing_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
403
scope_insufficientKey lacks engagements:read scope
404
not_foundEngagement does not exist in the credential workspace