8. Quick reference card
One page. Print it, or keep it open on the second screen.
URLs
| What | Where |
|---|---|
| Sign in | https://id.eworks.cloud |
| Workspace app | https://app.eworks.cloud |
| Chat | https://app.eworks.cloud/chat |
| Agents | https://app.eworks.cloud/agents |
| Audit | https://app.eworks.cloud/audit |
| Members | https://app.eworks.cloud/settings/members |
| Usage and cost | https://app.eworks.cloud/dashboards |
| API base | https://api.eworks.cloud/v1 |
| Docs | https://docs.eworks.cloud |
| Status | https://status.eworks.cloud |
Keyboard shortcuts
| Keys | Action |
|---|---|
Ctrl/⌘ + K | Global search |
Ctrl/⌘ + Enter | New conversation |
Enter | Send message |
Shift + Enter | New line |
Esc | Stop streaming response |
/ | Command palette in the message box |
Ctrl/⌘ + \ | Toggle sidebar |
Ctrl/⌘ + Shift + E | Export current conversation |
g then a | Go to agents |
g then u | Go to audit |
Common API calls
bash
export TOKEN="$ACCESS_TOKEN" # from id.eworks.cloud → Account → API tokens
export API="https://api.eworks.cloud/v1"
# Who am I?
curl -s $API/me -H "Authorization: Bearer $TOKEN" | jq
# Send a chat message
curl -s -X POST $API/chats -H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"model":"auto","messages":[{"role":"user","content":"What is AI?"}]}'
# Invite a teammate
curl -s -X POST $API/workspaces/$WORKSPACE_ID/invitations \
-H "Authorization: Bearer $TOKEN" -H "Content-Type: application/json" \
-d '{"email":"bob@company.com","role":"member"}'
# Trigger an agent run
curl -s -X POST $API/agents/$AGENT_ID/runs -H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" -d '{"input":{}}'
# Pull yesterday's audit events
curl -s -G $API/audit/events -H "Authorization: Bearer $TOKEN" \
--data-urlencode "from=$(date -u -d '1 day ago' +%FT%TZ)" | jq '.events | length'Roles at a glance
- Admin — everything, including billing, members, connectors, and audit export.
- Member — chat, knowledge, agents.
- Viewer — read-only audit and dashboards.
Retention at a glance
- Chats and agent runs: until deleted (optional auto-expiry).
- Agent memory: 30 days.
- Audit events: 7 years, immutable.
- Backups: 35-day rotation.
Support
support@eworks.cloud— anything at all, one business day during beta.security@eworks.cloud— vulnerability reports.status.eworks.cloud— incidents and maintenance.- Include the correlation ID from the audit event; it points straight at the request.