- API key auth via x-openclaw-key header (OPENCLAW_API_KEY env var)
- GET /api/openclaw/sync/status
- POST /api/openclaw/sync/autotask/incremental
- POST /api/openclaw/sync/autotask/full
- POST /api/openclaw/sync/autotask/entity { entities: [...] }
- POST /api/openclaw/sync/datto-rmm { syncType: full|incremental }
- POST /api/openclaw/sync/sentinelone
- POST /api/openclaw/sync/veeam { syncType: full|incremental }
- POST /api/openclaw/sync/zoom
- POST /api/openclaw/sync/engagement
- POST /api/openclaw/sync/qbo { syncType: full|incremental }
- POST /api/openclaw/sync/zabbix
- POST /api/openclaw/sync/itglue
All routes bypass Better Auth middleware, delegate to existing sync services
35 lines
1.2 KiB
TypeScript
35 lines
1.2 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import { validateOpenClawKey } from '@/lib/utils/openclaw-auth';
|
|
import { QboSyncService } from '@/lib/services/qbo-sync-service';
|
|
import { QboClient } from '@/lib/services/qbo-client';
|
|
|
|
export async function POST(request: NextRequest) {
|
|
const authError = validateOpenClawKey(request);
|
|
if (authError) return authError;
|
|
|
|
try {
|
|
const body = await request.json().catch(() => ({}));
|
|
const syncType: 'full' | 'incremental' = body.syncType === 'incremental' ? 'incremental' : 'full';
|
|
|
|
const client = new QboClient();
|
|
const service = new QboSyncService(client);
|
|
|
|
if (service.isSyncInProgress()) {
|
|
return NextResponse.json({ error: 'QBO sync already in progress' }, { status: 409 });
|
|
}
|
|
|
|
(syncType === 'full'
|
|
? service.fullSync('openclaw')
|
|
: service.incrementalSync('openclaw')
|
|
).catch((err) => console.error('[OpenClaw] QBO sync failed:', err));
|
|
|
|
return NextResponse.json({
|
|
message: `QBO ${syncType} sync started`,
|
|
syncType,
|
|
triggeredBy: 'openclaw',
|
|
});
|
|
} catch (error) {
|
|
const msg = error instanceof Error ? error.message : String(error);
|
|
return NextResponse.json({ error: msg }, { status: 500 });
|
|
}
|
|
}
|