Daiva AI DMS360
Connect everything

50+ pre-built connectors. And an open API for the rest.

Whether you're plugging Salesforce in or shipping documents to your data warehouse — Daiva speaks every protocol your stack uses.

Microsoft 365

Outlook, SharePoint, Teams — two-way document sync.

  • Outlook attachments → DMS
  • SharePoint mirror
  • Teams approvals

Google Workspace

Drive, Gmail, Calendar.

  • Drive folder sync
  • Gmail capture
  • Calendar reminders

CRM & ERP

Salesforce, SAP, Oracle EBS, ServiceNow.

  • Account-linked documents
  • Invoice → SAP posting
  • ServiceNow ticket attachments

E-signature

DocuSign, Adobe Sign — end-to-end.

  • Inline signing
  • Audit certificates
  • Bulk send

Storage

AWS S3, Azure Blob, GCP Storage — BYO bucket.

  • Per-tenant bucket
  • Lifecycle policies
  • Cross-region replication

REST + Webhooks

OpenAPI 3.1, CloudEvents, signed JWTs.

  • 100+ endpoints
  • 30+ event types
  • SDKs: TS, Python, Java
API-First

Every screen is a public endpoint.

OpenAPI 3.1, CloudEvents, JWT auth. SDKs in TypeScript, Python, Java, .NET and Go. Sandbox keys live in 30 seconds.

POST /api/documents — multipart upload
POST /api/ai/extract — structured JSON
GET /api/search — semantic + keyword
Webhook: dms.document.classified (CloudEvents)
POST /api/documents
curl -X POST https://api.daiva-dms.io/api/documents \
  -H "Authorization: Bearer $TOKEN" \
  -F "file=@invoice.pdf"

# → 201 Created
{
  "id": "doc-9f2a…",
  "status": "processing",
  "ai": { "classified": "Invoice", "confidence": 0.98 }
}