API Reference

Actions

Read and update the action log — items assigned at meetings, deadlines, and completion status.

Base URL: https://quorate.app/api/v1

GET/actionsscope: actions:read

List actions (optionally filter by status).

Optional `?status=open|in_progress|complete|cancelled|deferred`.

curl -H "Authorization: Bearer qrt_xxxxxxxxxxxxxxxx" \
     https://quorate.app/api/v1/actions
PUT/actions/{id}scope: actions:write

Update action status.

JSON body `{ "status": "complete" }`. Returns the updated row.

curl -X PUT -H "Authorization: Bearer qrt_xxxxxxxxxxxxxxxx" \
     -H "Content-Type: application/json" \
     -d '{"status":"complete"}' \
     https://quorate.app/api/v1/actions/MEETING_OR_ROW_ID

More