Getting startedStep 82 min

8. Quick reference card

One page. Print it, or keep it open on the second screen.

URLs

WhatWhere
Sign inhttps://id.eworks.cloud
Workspace apphttps://app.eworks.cloud
Chathttps://app.eworks.cloud/chat
Agentshttps://app.eworks.cloud/agents
Audithttps://app.eworks.cloud/audit
Membershttps://app.eworks.cloud/settings/members
Usage and costhttps://app.eworks.cloud/dashboards
API basehttps://api.eworks.cloud/v1
Docshttps://docs.eworks.cloud
Statushttps://status.eworks.cloud

Keyboard shortcuts

KeysAction
Ctrl/⌘ + KGlobal search
Ctrl/⌘ + EnterNew conversation
EnterSend message
Shift + EnterNew line
EscStop streaming response
/Command palette in the message box
Ctrl/⌘ + \Toggle sidebar
Ctrl/⌘ + Shift + EExport current conversation
g then aGo to agents
g then uGo 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.

Detailed troubleshooting

Sign-in · Members · Chat · Agents · Audit · FAQ