Core Endpoints
The most commonly used endpoints across Aiinak products, with examples.
AiMail
| Method | Path | Purpose |
|---|---|---|
| GET | /email/v1/messages | List messages (filters: folder, q, cursor) |
| POST | /email/v1/messages | Send a message |
| GET | /email/v1/threads/:id | Fetch a full conversation |
| POST | /email/v1/drafts | Create a draft (optionally AI-generated) |
| GET | /email/v1/calendar/events | List calendar events |
| POST | /email/v1/bookings | Create a booking on a booking type |
Smart Drive & AI Search
| Method | Path | Purpose |
|---|---|---|
| POST | /drive/v1/files | Upload a file (multipart) |
| GET | /drive/v1/files/:id | Download or inspect a file |
| POST | /drive/v1/search | Natural-language file search |
| POST | /drive/v1/shares | Create a share link with permissions |
| POST | /search/v1/query | Multi-source search with AI answer |
| POST | /search/v1/chat | Conversational search in a session |
curl -X POST https://api.aiinak.com/drive/v1/search \
-H "Authorization: Bearer $TOKEN" \
-H "Content-Type: application/json" \
-d '{"query": "invoice PDFs from March over $1,000"}'AI Meeting & Enterprise AI
| Method | Path | Purpose |
|---|---|---|
| POST | /meetings/v1/meetings | Create a meeting (returns join URL) |
| GET | /meetings/v1/meetings/:id/transcript | Fetch the transcript |
| GET | /meetings/v1/meetings/:id/summary | Fetch the AI summary |
| POST | /api/v1/nexus/query | Nexus natural-language data query (tenant URL) |
| GET | /api/v1/invoices | List ERP invoices (tenant URL) |
| POST | /api/v1/workflows/:id/run | Trigger an ERP workflow (tenant URL) |
These tables cover the high-traffic endpoints only. Each product section of the docs links to its complete endpoint catalog.