Get work-item development activity
Returns the Engineering tab snapshot for one work item: linked branches, commits, and pull requests with their provider state. Read-only projection of stored links; it never calls the provider inline.
GET
/api/v1/work-items/:id/engineeringAuthorization
work-items:readapi key scoperequiredRequired scope when calling with an API key.
Path parameters
idstringrequiredCanonical work-item ID
Example: work_01k2...
Request
curl -X GET "https://www.digitalstack360.com/api/v1/work-items/work_01k2.../engineering" \
-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": {
"links": [
{
"id": "del_01k2...",
"providerKey": "github",
"repositoryFullName": "acme/storefront",
"artifactType": "pull_request",
"externalRef": "42",
"externalUrl": "https://github.com/acme/storefront/pull/42",
"title": "Checkout redesign",
"linkMethod": "manual",
"state": "open"
}
]
}
}Errors
401
missing_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
403
scope_insufficientKey lacks work-items:read scope
404
not_foundWork item does not exist or is outside the resolved workspace