Checklist Portal
Primary checklist workflow UI
Open Checklist →Use the CAPTCHA entry point for the portals or run the CLI commands to interact with the workspace API.
Continue to the Checklist Portal experience. Browser navigation and clipboard helpers remain available.
This button routes to Checklist Portal.
Prefer to script against the Linking API? Use the CLI samples below, or navigate directly to a portal entry point.
List stored connector rules via `/api/links`.
python -m apim_runtime.links plan --pair pm survey
curl -s "http://127.0.0.1:5000/apps/Workspace/workspace/checklists/api/links?slug=pm&linked=survey" | jq .
Invoke-RestMethod "http://127.0.0.1:5000/apps/Workspace/workspace/checklists/api/links?slug=pm&linked=survey" | ConvertTo-Json -Depth 4
Poll `/api/links` every few seconds to monitor new rows.
python -m apim_runtime.links plan --pair pm survey --watch
while true; do curl -s "http://127.0.0.1:5000/apps/Workspace/workspace/checklists/api/links?slug=pm&linked=survey" | jq ".updatedAt"; sleep 5; done
while ($true) {
Invoke-RestMethod "http://127.0.0.1:5000/apps/Workspace/workspace/checklists/api/links?slug=pm&linked=survey" | Out-Host
Start-Sleep -Seconds 5
}
POST JSON-LD rows back to `/api/links`.
python -m apim_runtime.links plan --pair pm survey --apply docs/checklists/connectors/pmSurvey.jsonld
curl -s -X POST "http://127.0.0.1:5000/apps/Workspace/workspace/checklists/api/links" \
-H "Content-Type: application/json" \
-d @- <<'JSON'
{
"slug": "pm",
"linked": "survey",
"replace": true,
"rows": []
}
JSON
$body = @'
{
"slug": "pm",
"linked": "survey",
"replace": true,
"rows": []
}
'@
Invoke-RestMethod -Uri "http://127.0.0.1:5000/apps/Workspace/workspace/checklists/api/links" `
-Method Post -ContentType "application/json" `
-Body $body
These examples assume multi-app routing (/apps/Workspace prefix). If you launch a single portal directly, drop the prefix when calling /workspace/checklists/api/links.
Each portal is always reachable under /apps/<portal-key>. Bookmark the ones you use most.
Primary checklist workflow UI
Open Checklist →Operational status dashboard and developer utilities
Open APIM →Survey workflow with appendix support
Open APIM →Link shared checklist data across slugs derived from docs/checklists/*.md
Open Data →