Get engineering polling status
Read-only operational telemetry for scheduled Engineering Links polling: when each bound repository was last polled, run outcomes, and cumulative write counts. Scoped to the caller’s workspace; exposes no credential, token, or provider secret.
GET
/api/v1/engineering/polling/statusAuthorization
work-items:readapi key scoperequiredRequired scope when calling with an API key.
Request
curl -X GET "https://www.digitalstack360.com/api/v1/engineering/polling/status" \
-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": {
"repositories": [
{
"projectId": "proj_abc123",
"repositoryFullName": "acme/storefront",
"lastRunState": "succeeded",
"lastRunAt": "2026-07-15T14:20:00Z",
"lastSuccessAt": "2026-07-15T14:20:04Z",
"lastFailureAt": null,
"lastFailureCode": null,
"lastDurationMs": 4210,
"currentlyPolling": false,
"totals": {
"created": 2,
"updated": 5,
"unchanged": 41,
"staleConflict": 0,
"ambiguousConflict": 0,
"immutableConflict": 0,
"manualPreserved": 1
}
}
],
"totalRepositories": 1,
"currentlyPolling": 0,
"everSucceeded": 1,
"lastFailureCodes": []
}
}Errors
401
missing_authNo credentials provided
401
invalid_api_keyAPI key is invalid or revoked
403
scope_insufficientKey lacks work-items:read scope