Public API Status
Supported Leenops REST paths, scopes, and current limitations.
This page is the public support boundary for the Leenops REST API. It lists the operations an external integration may rely on after reading the dedicated guide. OpenAPI publication is temporarily paused; see OpenAPI status.
Supported contract
| Resource | Path | Methods | API-key scope |
|---|---|---|---|
| Contacts | /crm/contacts | GET, POST | contacts.read / contacts.write |
| Deals | /crm/deals | GET, POST | deals.read / deals.write |
| Deal | /crm/deals/{id} | GET, PATCH, DELETE | deals.read / deals.write |
| Projects | /projects | GET, POST | projects.read / projects.write |
| Project | /projects/{id} | GET, PATCH, DELETE | projects.read / projects.write |
| Tasks or tickets | /issues | GET, POST | issues.read / issues.write |
| Task or ticket | /issues/{id} | GET, PATCH, DELETE | issues.read / issues.write |
All paths are relative to:
https://workspace.leenops.com/api/v1A matching write scope also authorizes reads for that area. Authentication
failures return 401; a valid key without the required scope returns 403.
Important compatibility behavior
- Set
kind=taskorkind=ticketexplicitly when listing issues. - An omitted issue kind currently defaults to project tasks.
DELETE /issues/{id}supports project tasks, not support tickets.- Some create operations return the created object directly instead of the
common
{ data }envelope; follow the endpoint guide. - Runtime validation and the endpoint guide remain authoritative.
Operations not listed here
An application route existing does not make it a supported external contract. Do not probe or call unlisted routes, infer payloads from UI behavior, or rely on internal implementation details. For broader coverage:
- Use MCP tool discovery to retrieve the live, permission-aware tool list and schemas.
- Ask support@leenops.com whether a REST operation is available for your use case.
Legacy compatibility functions are not recommended for new integrations.
Last verification
The supported REST list, scopes, agent guidance, and sanitized OpenAPI publication gate were verified on 2026-07-29.

